alert-me/app/Cargo.toml

24 lines
831 B
TOML
Raw Normal View History

2024-05-11 16:37:41 +00:00
[package]
name = "alert-me"
version = "0.1.0"
edition = "2021"
[dependencies]
entity = { path = "../entity" }
migration = { path = "../migration" }
2024-05-11 21:04:12 +00:00
ciborium = "0.2.2"
2024-05-11 16:37:41 +00:00
clap = { version = "4.5.4", features = ["derive"] }
config = "0.14.0"
futures = "0.3.30"
2024-05-20 09:18:17 +00:00
itertools = "0.13.0"
2024-05-11 16:37:41 +00:00
reqwest = { version = "0.12.4", features = ["json", "rustls-tls"], default-features = false }
rumqttc = "0.24.0"
2024-05-11 16:51:55 +00:00
sea-orm = { workspace = true, features = [ "with-time", "sqlx-sqlite", "sqlx-postgres", "sqlx-mysql", "runtime-tokio-rustls", "macros" ] }
2024-05-11 16:37:41 +00:00
serde = { workspace = true }
serde_json = "1.0.116"
thiserror = "1.0.59"
time = { workspace = true, features = ["macros", "serde", "formatting", "parsing" ] }
tokio = { version = "1.37.0", features = ["full"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }