-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
36 lines (30 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
34
35
36
[package]
name = "trigger-cron"
version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }
rust-version = "1.73"
[workspace.package]
version = "0.1.0"
authors = ["Fermyon Engineering <[email protected]>"]
edition = "2021"
[workspace]
members = ["sdk", "sdk/macro"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
async-trait = "0.1"
clap = { version = "3.1.15", features = ["derive", "env"] }
serde = "1.0"
spin-trigger = { git = "https://github.com/fermyon/spin" }
tokio = { version = "1.37", features = ["full"] }
tokio-cron-scheduler = "0.9.4"
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3.7", features = ["env-filter"] }
wasmtime = { version = "22.0.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" }
[workspace.dependencies]
wit-bindgen = "0.16.0"