-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
27 lines (25 loc) · 1023 Bytes
/
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
[package]
name = "trigger-sqs"
version = "0.8.0"
edition = "2021"
rust-version = "1.79"
[dependencies]
anyhow = "1.0.68"
aws-config = "0.52.0"
aws-sdk-sqs = "0.22.0"
clap = { version = "3.1.15", features = ["derive", "env"] }
futures = "0.3.25"
serde = "1.0"
spin-core = { git = "https://github.com/fermyon/spin", tag = "v3.0.0" }
spin-factors = { git = "https://github.com/fermyon/spin", tag = "v3.0.0" }
spin-runtime-factors = { git = "https://github.com/fermyon/spin", tag = "v3.0.0" }
spin-telemetry = { git = "https://github.com/fermyon/spin", tag = "v3.0.0" }
spin-trigger = { git = "https://github.com/fermyon/spin", tag = "v3.0.0" }
tokio = { version = "1.38", features = ["rt", "macros", "time", "signal"] }
tokio-scoped = "0.2.0"
tracing = { version = "0.1", features = ["log"] }
wasmtime = { version = "25.0" }
[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" }