-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
executable file
·33 lines (29 loc) · 1.15 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
[package]
name = "trigger-mqtt"
version = "0.3.2"
edition = "2021"
rust-version = "1.81"
[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.1.2" }
spin-core = { git = "https://github.com/fermyon/spin", tag = "v3.1.2" }
spin-expressions = { git = "https://github.com/fermyon/spin", tag = "v3.1.2" }
spin-factors = { git = "https://github.com/fermyon/spin", tag = "v3.1.2" }
spin-runtime-factors = { git = "https://github.com/fermyon/spin", tag = "v3.1.2" }
spin-trigger = { git = "https://github.com/fermyon/spin", tag = "v3.1.2" }
spin-telemetry = { git = "https://github.com/fermyon/spin", tag = "v3.1.2" }
spin-factor-variables = { git = "https://github.com/fermyon/spin", tag = "v3.1.2" }
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"