-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
57 lines (51 loc) · 2.05 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
[package]
name = "platform-plugin"
version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }
[workspace.package]
version = "0.1.0"
authors = ["Fermyon Engineering <engineering@fermyon.com>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
bindle = { git = "https://github.com/fermyon/bindle", tag = "v0.8.2", default-features = false, features = [
"client",
] }
chrono = "0.4"
clap = { version = "3.2.24", features = ["derive", "env"] }
hippo = { git = "https://github.com/deislabs/hippo-cli", tag = "v0.16.1" }
hippo-openapi = "0.10"
dirs = "5.0"
tokio = { version = "1.23", features = ["full"] }
tracing = { workspace = true }
rand = "0.8"
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-bindle = { git = "https://github.com/fermyon/spin", rev = "2e34ef5316caf39f0848e06e815fdceece7f1f15" }
spin-common = { git = "https://github.com/fermyon/spin", rev = "2e34ef5316caf39f0848e06e815fdceece7f1f15" }
spin-loader = { git = "https://github.com/fermyon/spin", rev = "2e34ef5316caf39f0848e06e815fdceece7f1f15" }
spin-manifest = { git = "https://github.com/fermyon/spin", rev = "2e34ef5316caf39f0848e06e815fdceece7f1f15" }
spin-http = { git = "https://github.com/fermyon/spin", rev = "2e34ef5316caf39f0848e06e815fdceece7f1f15" }
spin-trigger-http = { git = "https://github.com/fermyon/spin", rev = "2e34ef5316caf39f0848e06e815fdceece7f1f15" }
tempfile = "3.3.0"
url = "2.3"
uuid = { version = "1.3", features = ["v4"] }
[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"] }
[build-dependencies]
vergen = { version = "^8.2.1", default-features = false, features = [
"build",
"git",
"gitcl",
"cargo",
] }