wordlebot/Cargo.toml

15 lines
422 B
TOML
Raw Permalink Normal View History

2023-07-07 16:16:24 +02:00
[package]
name = "wordlebot"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "0.4.26"
reqwest = { version ="0.11.18", features = ["json"]}
2024-03-08 09:28:32 +01:00
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
2023-07-07 16:16:24 +02:00
serde = { version = "1.0.104", features = ["derive"] }
serde_json = "1.0.48"
2024-03-08 09:28:32 +01:00
lemmy_api_common = "0.19.3"