common/Cargo.toml

33 lines
624 B
TOML
Raw Normal View History

2024-04-30 07:13:17 +00:00
[package]
name = "emgauwa-common"
version = "0.5.0"
edition = "2021"
authors = ["Tobias Reisinger <tobias@msrg.cc>"]
[dependencies]
actix = "0.13"
actix-web = "4.4"
actix-web-actors = "4.2"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
2024-05-04 16:32:47 +00:00
simple_logger = "5.0"
2024-04-30 07:13:17 +00:00
log = "0.4"
2024-05-04 16:32:47 +00:00
config = "0.14"
2024-04-30 07:13:17 +00:00
chrono = { version = "0.4", features = ["serde"] }
2024-05-04 16:32:47 +00:00
sqlx = { version = "0.7", features = ["sqlite", "runtime-tokio", "macros"] }
2024-04-30 07:13:17 +00:00
libsqlite3-sys = { version = "*", features = ["bundled"] }
2024-05-02 19:14:28 +00:00
uuid = { version = "1.8", features = ["v4"] }
2024-04-30 07:13:17 +00:00
futures = "0.3"
libc = "0.2"
rppal = "0.17"
rppal-pfd = "0.0.5"
rppal-mcp23s17 = "0.0.3"