-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
67 lines (60 loc) · 2.5 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
[package]
name = "cloud-plugin"
version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }
[workspace.package]
version = "0.10.0"
authors = ["Fermyon Engineering <engineering@fermyon.com>"]
edition = "2021"
rust-version = "1.80"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
chrono = "0.4"
clap = { version = "3.2.24", features = ["derive", "env"] }
cloud = { path = "crates/cloud" }
cloud-openapi = { workspace = true }
comfy-table = "7"
dirs = "5.0"
dialoguer = "0.10"
lazy_static = "1.4.0"
oci-distribution = { git = "/~https://github.com/fermyon/oci-distribution", rev = "7e4ce9be9bcd22e78a28f06204931f10c44402ba" }
tokio = { version = "1.23", features = ["full"] }
tracing = { workspace = true }
rand = "0.8"
regex = "1.5.4"
reqwest = { version = "0.11", features = ["stream"] }
rpassword = "7.0"
semver = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.82"
sha2 = "0.10.2"
spin-common = { git = "/~https://github.com/fermyon/spin", rev = "94c5b55188c8a0f6e59e0e229ef6799f4dc4e99e" }
spin-loader = { git = "/~https://github.com/fermyon/spin", rev = "94c5b55188c8a0f6e59e0e229ef6799f4dc4e99e" }
spin-locked-app = { git = "/~https://github.com/fermyon/spin", rev = "94c5b55188c8a0f6e59e0e229ef6799f4dc4e99e" }
spin-http = { git = "/~https://github.com/fermyon/spin", rev = "94c5b55188c8a0f6e59e0e229ef6799f4dc4e99e", default-features = false }
spin-manifest = { git = "/~https://github.com/fermyon/spin", rev = "94c5b55188c8a0f6e59e0e229ef6799f4dc4e99e" }
spin-oci = { git = "/~https://github.com/fermyon/spin", rev = "94c5b55188c8a0f6e59e0e229ef6799f4dc4e99e" }
terminal = { git = "/~https://github.com/fermyon/spin", rev = "94c5b55188c8a0f6e59e0e229ef6799f4dc4e99e" }
tempfile = "3.3.0"
url = { version = "2.3", features = ["serde"] }
uuid = { version = "1.3", features = ["v4"] }
env_logger = "0.10.1"
[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" }
[workspace.dependencies]
tracing = { version = "0.1", features = ["log"] }
cloud-openapi = { git = "/~https://github.com/fermyon/cloud-openapi", rev = "b6549ceb60cb329ce994d05f725a6a0b26287bca" }
[build-dependencies]
vergen = { version = "^8.2.1", default-features = false, features = [
"build",
"git",
"gitcl",
"cargo",
] }
[dev-dependencies]
mockall = "0.11"
cloud = { path = "crates/cloud", features = ["mocks"] }