forked from fermyon/spin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
87 lines (81 loc) · 2.57 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
87
[package]
name = "spin-cli"
version = "0.4.0"
edition = "2021"
authors = [ "Fermyon Engineering <[email protected]>" ]
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
atty = "0.2"
bindle = { version = "0.8.0", default-features = false, features = ["client"] }
bytes = "1.1"
clap = { version = "3.1.15", features = ["derive", "env"] }
comfy-table = "5.0"
ctrlc = { version = "3.2", features = ["termination"] }
dirs = "4.0"
dunce = "1.0"
env_logger = "0.9"
futures = "0.3"
hippo-openapi = "0.8"
hippo = { git = "https://github.com/deislabs/hippo-cli", rev = "67f6368fa39d296c3d1b11a93e43bc4c751cba6b"}
lazy_static = "1.4.0"
nix = { version = "0.24", features = ["signal"] }
outbound-redis = { path = "crates/outbound-redis" }
path-absolutize = "3.0.11"
regex = "1.5.5"
reqwest = { version = "0.11", features = ["stream"] }
semver = "1.0"
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0.82"
sha2 = "0.10.2"
spin-build = { path = "crates/build" }
spin-config = { path = "crates/config" }
spin-engine = { path = "crates/engine" }
spin-http-engine = { path = "crates/http" }
spin-loader = { path = "crates/loader" }
spin-manifest = { path = "crates/manifest" }
spin-publish = { path = "crates/publish" }
spin-redis-engine = { path = "crates/redis" }
spin-templates = { path = "crates/templates" }
spin-trigger = { path = "crates/trigger" }
tempfile = "3.3.0"
tokio = { version = "1.11", features = [ "full" ] }
toml = "0.5"
tracing = { version = "0.1", features = [ "log" ] }
tracing-futures = "0.2"
tracing-subscriber = { version = "0.3.7", features = [ "env-filter" ] }
url = "2.2.2"
wasi-outbound-http = { path = "crates/outbound-http" }
wasmtime = "0.35.3"
[target.'cfg(target_os = "linux")'.dependencies]
# This needs to be an explicit dependency to enable
# '--features openssl/vendored', which is used for Linux releases.
openssl = { version = "0.10" }
[dev-dependencies]
hyper = { version = "0.14", features = [ "full" ] }
sha2 = "0.10.1"
which = "4.2.5"
[build-dependencies]
cargo-target-dep = { git = "https://github.com/fermyon/cargo-target-dep", rev = "b7b1989fe0984c0f7c4966398304c6538e52fe49" }
vergen = { version = "7", default-features = false, features = [ "build", "git" ] }
[workspace]
members = [
"crates/build",
"crates/config",
"crates/engine",
"crates/http",
"crates/loader",
"crates/manifest",
"crates/outbound-http",
"crates/outbound-redis",
"crates/redis",
"crates/templates",
"crates/testing",
"crates/trigger",
"examples/spin-timer",
"sdk/rust",
"sdk/rust/macro"
]
[[bin]]
name = "spin"
path = "src/bin/spin.rs"