-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (36 loc) · 976 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
[package]
name = "containerd-shim-cwasi"
version = "0.0.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
containerd-shim = "0.3.0"
containerd-shim-wasm = "0.1.1"
log = "0.4.17"
ttrpc = "0.7.1"
chrono = "0.4.23"
anyhow = "1.0.69"
cap-std = "3.0.0"
oci-spec = { version = "0.6.0", features = ["runtime"] }
thiserror = "1.0.39"
libc = "0.2.138"
wasmedge-sdk = { version = "0.7.1", features = ["async"] }
wasmprinter = "0.206.0"
regex = "1.7.1"
itertools = "0.12.1"
walkdir = "2"
hostname = "0.4.0"
serde = { version= "1.0.159", features = ["derive"]}
serde_json = "1.0.95"
serde_derive = "1.0.159"
redis = "0.25.3"
uuid = {version = "1.8.0", features = ["v4"]}
tokio = { version = "*", features = ["full"]}
lazy_static = "1.4.0"
reqwest = { version = "0.12.4", features = ["blocking"] }
rand = "0.8.5"
nix = "0.23.2"
rayon = "1.5"
[[bin]]
name = "containerd-shim-cwasi-v1"
path = "src/main.rs"