Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add abs and make Oliver's example work #702

Merged
merged 11 commits into from
Jan 21, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
bump bril to add abs
ajpal committed Jan 7, 2025
commit 1fab22e3fc66f2d7de55a89ee9b39bcd1d653b16
36 changes: 23 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -23,14 +23,14 @@ rpds = "1.1.0"

syn = { version = "2.0", features = ["full", "extra-traits"] }
# currently using the uwplse/bril fork of bril, on eggcc-main
bril2json = { git = "https://github.com/uwplse/bril", rev = "f303a7d384f21a891d0215dc47e5ea947f014cf5" }
brilirs = { git = "https://github.com/uwplse/bril", rev = "f303a7d384f21a891d0215dc47e5ea947f014cf5" }
bril-rs = { git = "https://github.com/uwplse/bril", rev = "f303a7d384f21a891d0215dc47e5ea947f014cf5" }
brilift = { git = "https://github.com/uwplse/bril", rev = "f303a7d384f21a891d0215dc47e5ea947f014cf5" }
rs2bril = { git = "https://github.com/uwplse/bril", rev = "f303a7d384f21a891d0215dc47e5ea947f014cf5" ,features = [
bril2json = { git = "https://github.com/uwplse/bril", rev = "53b855bb847a459616b02f830b7d9b8848612dd8" }
brilirs = { git = "https://github.com/uwplse/bril", rev = "53b855bb847a459616b02f830b7d9b8848612dd8" }
bril-rs = { git = "https://github.com/uwplse/bril", rev = "53b855bb847a459616b02f830b7d9b8848612dd8" }
brilift = { git = "https://github.com/uwplse/bril", rev = "53b855bb847a459616b02f830b7d9b8848612dd8" }
rs2bril = { git = "https://github.com/uwplse/bril", rev = "53b855bb847a459616b02f830b7d9b8848612dd8" ,features = [
"import",
] }
brillvm = { git = "https://github.com/uwplse/bril", rev = "f303a7d384f21a891d0215dc47e5ea947f014cf5" }
brillvm = { git = "https://github.com/uwplse/bril", rev = "53b855bb847a459616b02f830b7d9b8848612dd8" }

ordered-float = "3.7.0"
serde_json = "1.0.103"