forked from bytecodealliance/cargo-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (47 loc) · 1.36 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
[package]
name = "cargo-component"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.71"
cargo = "0.71.0"
cargo-util = "0.2.4"
clap = { version = "4.3.11", features = ["derive"] }
toml_edit = { version = "0.19.12", features = ["serde"] }
warg-protocol = { git = "https://github.com/bytecodealliance/registry" }
warg-crypto = { git = "https://github.com/bytecodealliance/registry" }
warg-client = { git = "https://github.com/bytecodealliance/registry" }
wit-bindgen-core = "0.8.0"
wit-bindgen-rust = "0.8.0"
wit-bindgen-rust-lib = "0.8.0"
wit-parser = "0.8.0"
wit-component = "0.11.0"
pretty_env_logger = { version = "0.5.0", optional = true }
log = "0.4.19"
heck = "0.4.1"
semver = "1.0.17"
serde = { version = "1.0.166", features = ["derive"] }
url = { version = "2.4.0", features = ["serde"] }
tokio = { version = "1.29.1", default-features = false, features = ["macros", "rt-multi-thread"] }
home = "0.5.5"
p256 = "0.13.2"
rand_core = "0.6.4"
serde_json = "1.0.100"
async-trait = "0.1.71"
wat = "1.0.66"
indexmap = "1.9.3"
hex = "0.4.3"
termcolor = "1.2.0"
wasm-metadata = "0.8.0"
futures = "0.3.28"
bytes = "1.4.0"
tokio-util = "0.7.8"
rpassword = "7.2.0"
keyring = "2.0.4"
[features]
default = ["pretty_env_logger"]
[dev-dependencies]
assert_cmd = "2.0.11"
predicates = "3.0.3"
wasmparser = "0.107.0"
warg-server = { git = "https://github.com/bytecodealliance/registry" }