forked from Shopify/function-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (38 loc) · 853 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
36
37
38
39
40
41
42
43
44
[workspace]
members = [
"tests/fixtures/exit_code",
"tests/fixtures/log_truncation_function",
"tests/fixtures/exports",
]
[package]
name = "function-runner"
version = "6.2.1"
edition = "2021"
[profile.wasm]
inherits = "release"
opt-level = "s"
strip = true
lto = true
[profile.test]
opt-level = 3
[dependencies]
wasmtime = "=22.0.0"
wasmtime-wasi = "=25.0.2"
wasi-common = "=22.0.0"
deterministic-wasi-ctx = "=0.1.24"
anyhow = "1.0"
clap = { version = "4.5", features = ["derive"] }
serde_json = "1.0"
colored = "2.1"
serde = "1.0"
rust-embed = "8.5.0"
rmp-serde = "1.3"
is-terminal = "0.4.13"
wasmprof = "0.7.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"