alert-me/app/Cargo.toml

27 lines
993 B
TOML
Raw Normal View History

2024-05-11 16:37:41 +00:00
[package]
name = "alert-me"
version = "0.1.0"
edition = "2021"
2024-05-20 10:00:39 +00:00
license = { workspace = true }
authors = { workspace = true }
repository = { workspace = true }
2024-05-11 16:37:41 +00:00
[dependencies]
entity = { path = "../entity" }
migration = { path = "../migration" }
2024-05-11 21:04:12 +00:00
ciborium = "0.2.2"
2024-06-28 16:18:43 +00:00
clap = { version = "4.5.7", features = ["derive"] }
2024-05-20 10:00:39 +00:00
config = { version = "0.14.0", default-features = false, features = [ "toml" ] }
2024-05-11 16:37:41 +00:00
futures = "0.3.30"
2024-05-20 09:18:17 +00:00
itertools = "0.13.0"
2024-06-28 16:18:43 +00:00
reqwest = { version = "0.12.5", features = ["json", "rustls-tls"], default-features = false }
2024-05-11 16:37:41 +00:00
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 }
2024-06-28 16:18:43 +00:00
serde_json = "1.0.118"
thiserror = "1.0.61"
2024-05-11 16:37:41 +00:00
time = { workspace = true, features = ["macros", "serde", "formatting", "parsing" ] }
2024-06-28 16:18:43 +00:00
tokio = { version = "1.38.0", features = ["full"] }
2024-05-11 16:37:41 +00:00
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }