-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
executable file
·32 lines (28 loc) · 1.13 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
[package]
name = "trigger-mqtt"
version = "0.3.0"
edition = "2021"
[dependencies]
anyhow = "1.0.68"
clap = { version = "3.1.15", features = ["derive", "env"] }
futures = "0.3.25"
serde = "1.0.188"
spin-app = { git = "https://github.com/fermyon/spin", tag = "v3.0.0" }
spin-core = { git = "https://github.com/fermyon/spin", tag = "v3.0.0" }
spin-expressions = { 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-trigger = { git = "https://github.com/fermyon/spin", tag = "v3.0.0" }
spin-telemetry = { git = "https://github.com/fermyon/spin", tag = "v3.0.0" }
spin-factor-variables = { git = "https://github.com/fermyon/spin", tag = "v3.0.0" }
tokio = { version = "1.37", features = ["full"] }
tracing = { version = "0.1", features = ["log"] }
paho-mqtt = { version = "0.12.3", features = ["vendored-ssl"] }
wasmtime = { version = "25.0" }
[workspace]
members = ["sdk", "sdk/macro"]
[workspace.package]
version = "0.2.0"
edition = "2021"
[workspace.dependencies]
wit-bindgen = "0.16.0"