-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
86 lines (76 loc) · 2.45 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[workspace]
resolver = '2'
members = [
"crates/wasi-common",
"crates/blockless-drivers",
"crates/blockless-env",
"crates/blockless-multiaddr",
"blockless",
"bls-runtime",
]
[workspace.package]
version = "28.0.0"
authors = ["The Blockless Project Developers"]
edition = "2021"
[patch.crates-io]
wasi-common = {path = "crates/wasi-common"}
[workspace.dependencies]
tempfile = "3.4.1"
libc = { version = "0.2.112", default-features = true }
wasmtime = "=28.0.0"
wasmtime-wasi = "=28.0.0"
wiggle-generate = "=28.0.0"
wasmtime-wasi-nn = { version = "=28.0.0" }
wasmtime-wasi-threads = "=28.0.0"
wasi-common = { path = "crates/wasi-common", version="=28.0.0" }
# witx dependency by wiggle
wiggle = "=28.0.0"
witx = "0.9.1"
anyhow = "1.0.93"
cap-std = "3.4.1"
cap-fs-ext = "3.4.1"
cap-time-ext = "3.4.1"
cap-tempfile = "3.4.1"
cap-rand = { version = "3.4.1", features = ["small_rng"] }
test-log = { version = "0.2", default-features = false, features = ["trace"] }
tracing-subscriber = { version = "0.3.1", default-features = false, features = ['fmt', 'env-filter', 'ansi', 'tracing-log'] }
clap = { version = "4.5.17", default-features = false, features = ["std", "derive"] }
is-terminal = "0.4.10"
bitflags = "2.0"
async-trait = "0.1.71"
tracing = "0.1.26"
url = "2.3.1"
io-lifetimes = { version = "2.0.3", default-features = false }
log = { version = "0.4.8", default-features = false }
thiserror = "1.0.43"
blockless-drivers = { path = "crates/blockless-drivers" }
blockless-multiaddr = { path = "crates/blockless-multiaddr" }
env_logger = "0.11.5"
windows-sys = "0.59.0"
once_cell = "1.12.0"
md5 = "0.7.0"
rust-car = "0.1.4"
tempdir = "0.3.7"
bytes = "1.4"
futures-core = { version = "0.3.27", default-features = false }
futures-util = { version = "0.3.27", default-features = false }
dlopen = "0.1"
lazy_static = "1.4.0"
syn = "2.0.25"
json = {version = "0.12.4"}
tokio = { version = "1.30.0", features = [ "rt", "time" ] }
system-interface = { version = "0.27.1", features = ["cap_std_impls"] }
fs-set-times = "0.20.1"
io-extras = "0.18.1"
rustix = "0.38.31"
[workspace.lints.rust]
# Turn on some lints which are otherwise allow-by-default in rustc.
unused_extern_crates = 'warn'
trivial_numeric_casts = 'warn'
unstable_features = 'warn'
unused_import_braces = 'warn'
[workspace.lints.clippy]
# The default set of lints in Clippy is viewed as "too noisy" right now so
# they're all turned off by default. Selective lints are then enabled below as
# necessary.
all = 'allow'