15 lines
544 B
TOML
15 lines
544 B
TOML
[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"] }
|
|
hyper = { version = "0.14", features = ["server", "client", "http1", "tcp"] }
|
|
hyper-rustls = "0.24"
|
|
tokio = { version = "1.0", features = ["rt", "macros", "rt-multi-thread"] }
|
|
chrono = { version = "0.4.24", features = ["std"] }
|