-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
60 lines (55 loc) · 1.44 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
[workspace]
members = [
"main",
"syntax",
"parser",
"sourcemap",
"ty",
"typing",
"ir_typed_ast",
"ir_knorm",
"ir_closure",
"ir_asm_virtual",
"ir_knorm_passes",
"ir_asm_virtual_passes",
"data_structure",
"middleware",
"codegen_wasm",
"runtime",
]
resolver = "2"
default-members = ["main"]
[workspace.package]
version = "0.2.1"
edition = "2021"
authors = ["s-ylide <[email protected]>"]
license = "MIT/Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace.dependencies]
anyhow = "1.0.89"
thiserror = "1.0.64"
bitvec = "1.0.1"
typed-arena = "2.0.2"
cfg-if = "1.0.0"
serde = { version = "1.0.209", features = ["derive"] }
toml = "0.8.19"
rustc-hash = "2.0.0"
clap = { version = "4.5.18", features = ["derive"] }
wasm-encoder = "0.217.0"
wasmtime = "25.0.3"
wasi-common = "25.0.1"
indexmap = "2.6.0"
syntax = { path = "./syntax" }
parser = { path = "./parser" }
sourcemap = { path = "./sourcemap" }
ty = { path = "./ty" }
typing = { path = "./typing" }
ir_typed_ast = { path = "./ir_typed_ast" }
ir_knorm = { path = "./ir_knorm" }
ir_closure = { path = "./ir_closure" }
ir_asm_virtual = { path = "./ir_asm_virtual" }
ir_knorm_passes = { path = "./ir_knorm_passes" }
ir_asm_virtual_passes = { path = "./ir_asm_virtual_passes" }
data_structure = { path = "./data_structure" }
middleware = { path = "./middleware" }
codegen_wasm = { path = "./codegen_wasm" }