core/Cargo.toml

31 lines
642 B
TOML
Raw Normal View History

2021-11-04 22:37:16 +00:00
[package]
name = "emgauwa-core"
version = "0.1.0"
edition = "2018"
2021-11-04 22:37:16 +00:00
authors = ["Tobias Reisinger <tobias@msrg.cc>"]
[dependencies]
2023-11-22 15:28:46 +00:00
actix = "0.13"
2023-11-19 17:54:27 +00:00
actix-web = "4.4"
2023-11-22 15:28:46 +00:00
actix-web-actors = "4.2"
2023-11-19 17:54:27 +00:00
2023-11-20 23:44:45 +00:00
sqlx = { version = "0.7", features = ["sqlite", "runtime-async-std", "macros", "chrono"] }
2023-11-19 17:54:27 +00:00
2021-11-04 22:37:16 +00:00
dotenv = "0.15"
2023-11-19 17:54:27 +00:00
config = "0.13"
lazy_static = { version = "1.4.0", features = [] }
simple_logger = "4.2"
log = "0.4"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.5", features = ["serde", "v4"] }
2021-11-04 22:37:16 +00:00
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
2023-11-19 17:54:27 +00:00
2021-11-09 15:43:43 +00:00
libsqlite3-sys = { version = "*", features = ["bundled"] }
2023-11-20 23:44:45 +00:00
futures = "0.3.29"