forked from spinkube/spin-trigger-mqtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
executable file
·33 lines (28 loc) · 1.05 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.2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[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 = "v2.4.0" }
spin-core = { git = "https://github.com/fermyon/spin", tag = "v2.4.0" }
spin-expressions = { git = "https://github.com/fermyon/spin", tag = "v2.4.0" }
spin-trigger = { git = "https://github.com/fermyon/spin", tag = "v2.4.0" }
tokio = { version = "1.37", features = ["full"] }
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3.7", features = ["env-filter"] }
paho-mqtt = { version = "0.12.3", default-features = false, features = [
"vendored-ssl",
] }
wasmtime = { version = "18.0.1", features = ["component-model"] }
[workspace]
members = ["sdk", "sdk/macro"]
[workspace.package]
version = "0.2.0"
edition = "2021"
[workspace.dependencies]
wit-bindgen = "0.16.0"