-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
65 lines (53 loc) · 1.82 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "eggcc"
version = "0.1.0"
edition = "2021"
[[test]]
harness = false
name = "files"
[dependencies]
egglog = { git = "https://github.com/egraphs-good/egglog", rev = "246b195" }
egraph-serialize = "0.2.0"
log = "0.4.19"
thiserror = "1"
lalrpop-util = { version = "0.20.2", features = ["lexer"] }
petgraph = "0.6"
hashbrown = "0.14"
indexmap = "2.0"
fixedbitset = "0.4.2"
smallvec = "1.11.1"
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 = [
"import",
] }
brillvm = { git = "https://github.com/uwplse/bril", rev = "f303a7d384f21a891d0215dc47e5ea947f014cf5" }
ordered-float = "3.7.0"
serde_json = "1.0.103"
dot-structures = "0.1.1"
graphviz-rust = "0.8.0"
serde = "1.0.217"
dag_in_context = { path = "dag_in_context" }
# binary dependencies
clap = { version = "4.4.7", features = ["derive"] }
tempfile = "3.10.1"
env_logger = "0.11.3"
[dev-dependencies]
glob = "0.3.1"
libtest-mimic = "0.6.1"
insta = { version = "1.31.0", features = ["yaml"] }
[profile.dev.package.insta]
opt-level = 3
[profile.dev.package.similar]
opt-level = 3
[features]
# Writes intermediate graphs and SVGs to /tmp
write-intermediates = []
# Runs tests relying on LLVM. This may not be available on all systems.
llvm = []
default = ["llvm"]