-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
32 lines (27 loc) · 1.11 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
[package]
name = "trigger-command"
version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }
rust-version = "1.81"
[workspace.package]
version = "0.2.2"
authors = ["Radu Matei <[email protected]>"]
edition = "2021"
[workspace]
[dependencies]
anyhow = "1.0"
clap = { version = "3.1.15", features = ["derive", "env"] }
serde = "1.0"
spin-trigger = { git = "https://github.com/fermyon/spin", tag = "v3.1.2" }
spin-core = { git = "https://github.com/fermyon/spin", tag = "v3.1.2" }
spin-telemetry = { git = "https://github.com/fermyon/spin", tag = "v3.1.2" }
spin-factors = { git = "https://github.com/fermyon/spin", tag = "v3.1.2" }
spin-factor-wasi = { git = "https://github.com/fermyon/spin", tag = "v3.1.2" }
spin-runtime-factors = { git = "https://github.com/fermyon/spin", tag = "v3.1.2" }
tokio = { version = "1.38", features = ["rt", "macros"] }
tracing = { version = "0.1", features = ["log"] }
[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" }