2023-09-27 23:08:48 +00:00
|
|
|
[package]
|
2023-10-02 09:22:04 +00:00
|
|
|
name = "discoursio-presense"
|
|
|
|
version = "0.2.0"
|
2023-09-27 23:08:48 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
actix-web = "4.4.0"
|
|
|
|
redis = { version = "0.23", features = ["tokio-comp"]}
|
2023-10-02 09:22:04 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2023-09-27 23:08:48 +00:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
2023-10-02 09:22:04 +00:00
|
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
|
|
futures = "0.3.28"
|
2023-10-02 15:38:48 +00:00
|
|
|
uuid = { version = "1.4.1", features = ["v4"] }
|
2023-10-02 13:55:31 +00:00
|
|
|
chrono = "0.4"
|
2023-10-02 11:28:06 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "presense"
|
2023-10-02 11:28:59 +00:00
|
|
|
path = "./src/main.rs"
|