-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
64 lines (58 loc) · 1.22 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
61
62
63
64
[workspace]
members = [
"tests/fixtures/exit_code",
"tests/fixtures/log_truncation_function",
"tests/fixtures/exports",
"tests/fixtures/noop",
]
[package]
name = "function-runner"
version = "7.0.1"
edition = "2021"
[profile.wasm]
inherits = "release"
opt-level = "s"
strip = true
lto = true
[profile.test]
opt-level = 3
[dependencies]
wasmtime = { version = "=28.0.0", default-features = false, features = [
"addr2line",
"all-arch",
"async",
"cache",
"component-model",
"coredump",
"cranelift",
"debug-builtins",
"demangle",
"parallel-compilation",
"pooling-allocator",
"profiling",
"runtime",
"signals-based-traps",
"std",
"threads",
"wat",
"winch",
] }
wasmtime-wasi = "=28.0.0"
wasi-common = "=28.0.0"
deterministic-wasi-ctx = "=0.1.28"
anyhow = "1.0"
clap = { version = "4.5", features = ["derive"] }
serde_json = "1.0"
colored = "3.0"
serde = "1.0"
rust-embed = "8.5.0"
rmp-serde = "1.3"
is-terminal = "0.4.13"
wasmprof = "0.9.0"
bluejay-core = { version = "=0.2.0" }
bluejay-parser = { version = "=0.2.0", features = ["format-errors"] }
bluejay-validator = { version = "=0.2.0" }
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.1"
assert_fs = "1.1.2"