27 lines
994 B
TOML
27 lines
994 B
TOML
[package]
|
|
name = "alert-me"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = { workspace = true }
|
|
authors = { workspace = true }
|
|
repository = { workspace = true }
|
|
|
|
[dependencies]
|
|
entity = { path = "../entity" }
|
|
migration = { path = "../migration" }
|
|
ciborium = "0.2.2"
|
|
clap = { version = "4.5.18", features = ["derive"] }
|
|
config = { version = "0.14.0", default-features = false, features = [ "toml" ] }
|
|
futures = "0.3.30"
|
|
itertools = "0.13.0"
|
|
reqwest = { version = "0.12.7", features = ["json", "rustls-tls"], default-features = false }
|
|
rumqttc = "0.24.0"
|
|
sea-orm = { workspace = true, features = [ "with-time", "sqlx-sqlite", "sqlx-postgres", "sqlx-mysql", "runtime-tokio-rustls", "macros" ] }
|
|
serde = { workspace = true }
|
|
serde_json = "1.0.128"
|
|
thiserror = "1.0.64"
|
|
time = { workspace = true, features = ["macros", "serde", "formatting", "parsing" ] }
|
|
tokio = { version = "1.40.0", features = ["full"] }
|
|
tracing = "0.1.40"
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|