-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
39 lines (33 loc) · 1.19 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
[package]
name = "trigger-kinesis"
version.workspace = true
authors.workspace = true
edition.workspace = true
rust-version = "1.78"
[workspace.package]
authors = ["Darwin Boersma <[email protected]>", "Fermyon Engineering <[email protected]>"]
version = "0.3.1"
edition = "2021"
[workspace]
members = ["sdk", "sdk/macro"]
[dependencies]
anyhow = "1.0.68"
aws-config = "1.5.5"
aws-sdk-kinesis = "1.51.0"
clap = { version = "3.1.15", features = ["derive", "env"] }
futures = "0.3.25"
serde = "1.0"
spin-core = { git = "https://github.com/fermyon/spin" }
spin-factors = { git = "https://github.com/fermyon/spin" }
spin-runtime-factors = { git = "https://github.com/fermyon/spin" }
spin-telemetry = { git = "https://github.com/fermyon/spin" }
spin-trigger = { git = "https://github.com/fermyon/spin" }
tokio = { version = "1.38", features = ["rt", "macros", "time", "signal"] }
tracing = { version = "0.1", features = ["log"] }
wasmtime = { version = "25.0.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" }
[workspace.dependencies]
wit-bindgen = "0.16.0"