-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (45 loc) · 1.27 KB
/
Cargo.toml
File metadata and controls
54 lines (45 loc) · 1.27 KB
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
[package]
name = "compiler"
version = "1.0.0"
edition = "2021"
authors = ["maxomatic458"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# ahash = { version = "0.8.11", features = ["serde"] }
clap = { version = "4.4.11", features = ["derive"] }
codespan-reporting = { git = "https://github.com/brendanzab/codespan", rev = "c84116f5" }
color-eyre = "0.6.2"
derive_more = "0.99.17"
# indexmap = { version = "2.2.3", features = ["serde"] }
ordermap = { version = "0.5.8", features = ["serde"] }
itertools = "0.12.0"
lazy_static = "1.4.0"
once_cell = "1.18.0"
phf = { version = "0.11.2", features = ["macros"] }
pretty_assertions = "1.4.0"
# rstest = "0.18.2"
semver = "1.0.20"
serde = { version = "1.0.188", features = ["derive"] }
serde-wasm-bindgen = "0.6"
strum = { version = "0.26.1", features = ["derive"] }
strum_macros = "0.26.1"
termcolor = "1.2.0"
thiserror = "1.0.47"
unescape = "0.1.0"
wasm-bindgen = "0.2.100"
[lib]
crate-type = ["cdylib"]
[[bin]]
path = "src/main.rs"
name = "compiler"
[dev-dependencies]
criterion = "0.5.1"
rstest = "0.18.2"
serial_test = { version = "3.0.0", features = ["file_locks"] }
[profile.release]
lto = true
opt-level = "z"
strip = "debuginfo"
[[bench]]
name = "generics"
harness = false