This repository has been archived by the owner on Jun 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathCargo.toml
80 lines (74 loc) · 2.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
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
[package]
name = "wapm-cli"
version = "0.5.9"
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
edition = "2018"
repository = "https://github.com/wasmerio/wapm-cli"
description = "WebAssembly Package Manager CLI"
license = "MIT"
[dependencies]
billboard = { version = "0.1.0", optional = true }
chrono = { version = "0.4", features = ["serde"] }
colored = { version = "1.8", optional = true }
dirs = { version = "4", optional = true }
anyhow = "1"
thiserror = "1.0"
fern = {version = "0.6", features = ["colored"]}
flate2 = "1.0.7"
graphql_client = "0.9"
lazy_static = "1.3"
license-exprs = "1.4.0"
log = "0.4"
maplit = { version = "1", optional = true }
minisign = "0.5"
prettytable-rs = { version = "0.8.0", optional = true }
regex = "1"
rpassword-wasi = "5"
rusqlite = { version = "0.24", optional = true }
semver = { version = "1.0", features = ["serde"] }
sentry = { version = "0.22.0", optional = true, features = ["anyhow", "panic", "backtrace"] }
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
structopt = { version = "0.3", features = ["color"] }
tempfile = "3"
time = "0.1"
toml = "0.5.6"
url = "2"
wapm-toml = { version = "0.3.0" }
wasmer-wasm-interface = { version = "0.1.0", path = "lib/wasm-interface" }
wasmparser = "0.51.4"
dialoguer = "0.4.0"
hex = { version = "0.4", optional = true }
blake3 = { version = "0.3.1", optional = true }
sublime_fuzzy = "0.7.0"
indicatif = { version = "0.17.1", features = ["improved_unicode"] }
console = "0.15.2"
[target.'cfg(not(target_os = "wasi"))'.dependencies]
whoami = "1.1.5"
atty = "0.2"
reqwest = { version = "0.11.0", features = ["native-tls-vendored", "blocking", "json", "gzip","socks","multipart"], optional = true }
tar = { version = "0.4" }
[target.'cfg(target_os = "wasi")'.dependencies]
whoami = "0.5"
wasm-bus-reqwest = "1.0"
wasm-bus-process = "1.0"
getrandom = "0.2.3"
tar = { package = "tar-wasi", version = "0.4" }
serde_yaml = { version = "^0.8" }
[dev-dependencies]
tempfile = "3"
[workspace]
members = [
".",
"lib/wasm-interface"
]
[features]
default = ["full","packagesigning", "sqlite-bundled"]
sqlite-bundled = ["rusqlite/bundled"]
telemetry = ["sentry"]
update-notifications= ["billboard", "colored"]
prehash-module = ["hex", "blake3"]
packagesigning = []#[cfg(feature = "full")]
integration_tests = ["maplit", "wapm-toml/integration_tests"]
full = [ "dirs", "rusqlite", "prettytable-rs", "reqwest" ]