Mk2Atom/Cargo.toml

16 lines
544 B
TOML
Raw Normal View History

2023-05-29 16:08:07 +02:00
[package]
name = "mk-to-atom"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
atom_syndication = { version = "0.12", features = ["with-serde"] }
2023-05-29 16:08:07 +02:00
hyper = { version = "0.14", features = ["server", "client", "http1", "tcp"] }
hyper-rustls = "0.24"
2023-05-29 16:08:07 +02:00
tokio = { version = "1.0", features = ["rt", "macros", "rt-multi-thread"] }
chrono = { version = "0.4.24", features = ["std"] }