-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (32 loc) · 963 Bytes
/
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
[package]
name = "diffable-arguments"
version = "0.1.0"
authors = ["Evan Almloff <ealmlof1@stumail.jccc.edu>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
criterion = "0.3.5"
bumpalo = { version = "3.11.1", features = ["collections", "boxed"] }
slotmap = "1.0.6"
rustc-hash = "1.1.0"
compact_str = "0.6.1"
arguments-macro = { path = "./arguments-macro" }
js-sys = { version = "0.3.61", optional = true }
sledgehammer_bindgen = { version = "0.1.3", optional = true }
sledgehammer_utils = { version = "0.1.0", optional = true }
wasm-bindgen = { version = "0.2.84", optional = true }
[dev.dependencies]
test = { path = "." }
[lib]
[features]
default = ["web"]
web = ["js-sys", "sledgehammer_bindgen", "sledgehammer_utils", "wasm-bindgen"]
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
opt-level = 3
debug = true
[[bench]]
name = "bench"
harness = false