26 lines
661 B
TOML
26 lines
661 B
TOML
[package]
|
|
name = "iot-cloud"
|
|
version = "0.2.1"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
actix-service = "2.0"
|
|
actix-web = "4.11"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
dotenvy = "0.15"
|
|
env_logger = "0.11"
|
|
log = "0.4"
|
|
semver = "1.0.25"
|
|
serde = "1.0.188"
|
|
sqlx = { version = "0.8", features = [ "runtime-tokio", "tls-rustls", "postgres", "migrate", "chrono", "mac_address"] }
|
|
sqlx-cli = "0.8"
|
|
strum = { version = "0.27", features = ["derive"] }
|
|
thiserror = "2.0"
|
|
tokio = { version = "1", features = ["fs", "rt-multi-thread"] }
|
|
|
|
|
|
[lints.clippy]
|
|
pedantic = "warn"
|