-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (31 loc) · 971 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
[package]
name = "wacc"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
phf = { version = "0.11", features = ["macros"] }
itertools = "0.10"
once_cell = "1.17"
clap = { version = "4.3", features = ["derive", "cargo"] }
elsa = "1.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
byte_string = "1.0"
take_mut = "0.2"
indexmap = "1.9"
owo-colors = { version = "3.5.0", features = ["supports-colors"] }
wast = "58.0.0"
# wast = { git = "https://github.com/slowlime/wasm-tools", branch = "gc-cast-encoding" }
paste = "1.0.12"
ron = "0.8.0"
serde = { version = "1", features = ["derive"] }
slotmap = { version = "1.0.6", features = ["serde"] }
[target.'cfg(target_family = "wasm")'.dependencies]
wasm-bindgen = { version = "0.2.86" }
console_error_panic_hook = { version = "0.1.7" }
[dev-dependencies]
insta = { version = "1.29.0", features = ["ron"] }
pretty_assertions = "1.3.0"
v8 = "0.71.2"