-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
46 lines (39 loc) · 1.01 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
[package]
name = "lunatic_ny"
version = "0.1.0"
authors = ["Bernard Kolobara <[email protected]>"]
edition = "2018"
[lib]
name = "lunatic_runtime"
path = "src/lib.rs"
[[bin]]
name = "lunatic"
path = "src/main.rs"
[dependencies]
uuid = { version = "0.8", features = ["v4"] }
anyhow = "1.0"
clap = "3.0.0-beta.2"
lazy_static = "1.4"
tokio = { version = "1.7", features = ["rt-multi-thread", "macros", "sync", "net", "time", "io-util"] }
wasmtime = { version = "0.28", git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main" }
wasmtime-wasi = { version = "0.28", git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main" }
wasmparser = "0.79"
wasm-encoder = "0.5"
paste = "1.0"
env_logger = "0.9"
log = "0.4"
[dev-dependencies]
wat = "1.0"
wabt = "0.10"
pretty_assertions = "0.7"
criterion = { version = "0.3", features = ["async_tokio"] }
[build-dependencies]
wat = "1.0"
[[bench]]
name = "benchmark"
harness = false
[workspace]
members = [
"plugins/heap_profiler",
"plugins/stdlib",
]