-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (42 loc) · 1.62 KB
/
Copy pathCargo.toml
File metadata and controls
50 lines (42 loc) · 1.62 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
[package]
name = "hyperquark"
version = "0.0.11"
edition = "2024"
publish = false
[dependencies]
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"] }
serde_json = { version = "1.0.150", default-features = false, features = ["alloc"] }
enum-field-getter = { path = "enum-field-getter" }
wasm-encoder = "0.245.1"
indexmap = { version = "2.14.0", default-features = false }
hashers = "1.0.1"
uuid = { version = "1.23.3", default-features = false, features = ["v4", "js"] }
regex = "1.12.4"
lazy-regex = "3.6.0"
bitmask-enum = "2.2.5"
itertools = { version = "0.14.0", default-features = false, features = ["use_alloc"] }
wasm-bindgen = "0.2.125"
serde-wasm-bindgen = "0.6.5"
wasm-gen = { path = "wasm-gen", version = "0.2.0" }
petgraph = { version = "0.8.1", default-features = false, features = ["stable_graph"] }
[dev-dependencies]
wasmparser = { git = "https://github.com/pufferfish101007/wasm-tools.git", rev = "4e9ffc0" }
wasmprinter = "0.245.1"
[target.'cfg(not(target_family = "wasm"))'.dev-dependencies]
# ezno-checker = { git = "https://github.com/kaleidawave/ezno.git", rev = "96d5058bdbb0cde924be008ca1e5a67fe39f46b9" }
[lib]
crate-type = ["cdylib", "rlib"]
[profile.release]
debug = true
lto = true
opt-level = "z"
[target.wasm32-unknown-unknown]
rustflags = [
"-C", "link-args=-z stack-size=4194304",
]
[build-dependencies]
convert_case = "0.8.0"
[features]
compiler = [] # if we only want to access flags, we don't want to additionally have all the compiler machinery
panic = [] # if we have DWARF debugging enabled, panicking is more useful than our clunky manual error propagation
default = ["compiler"]