miniflux-discord/Cargo.toml

22 lines
718 B
TOML
Raw Permalink Normal View History

2024-03-16 01:05:17 +01:00
[package]
name = "miniflux-discord"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
hyper = { version = "1", features = ["server", "http1", "http2"] }
2024-03-16 16:43:55 +01:00
tokio = { version = "1", features = ["macros", "rt-multi-thread", "signal"] }
2024-03-16 01:05:17 +01:00
http-body-util = "0.1"
hyper-util = { version = "0.1", features = ["tokio"] }
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0"
chrono = { version = "0.4.35", features = ["serde"] }
2024-03-16 01:57:21 +01:00
serenity = { version = "0.12" }
ring = { version = "0.17.8" }
2024-03-16 16:43:55 +01:00
data-encoding = "2.5"
stderrlog = "0.6.0"
log = { version = "0.4.21", features = ["serde"] }
2024-03-16 17:18:30 +01:00
thiserror = "1.0.37"
dirs = "5.0"