37 lines
1.1 KiB
TOML
37 lines
1.1 KiB
TOML
[package]
|
|
name = "blogrss"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Louis Hollingworth <louis@hollingworth.nl>"]
|
|
readme = "README.md"
|
|
repository = "https://git.ludoviko.ch/lucxjo/blogrss"
|
|
license = "AGPL-3.0-or-later"
|
|
description = "A simple blogging system using RSS/Atom"
|
|
|
|
[lib]
|
|
|
|
[[bin]]
|
|
name = "blogrss"
|
|
|
|
[[bin]]
|
|
name = "blogrss-server"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
argon2 = "0.5.2"
|
|
atom_syndication = { version = "0.12.2", features = ["with-serde"] }
|
|
axum = "0.7.3"
|
|
axum-xml = "0.2.0"
|
|
chrono = "0.4.31"
|
|
clap = { version = "4.4.16", features = ["derive"] }
|
|
jsonwebtoken = "9.2.0"
|
|
rand_core = { version = "0.6.4", features = ["getrandom"] }
|
|
reqwest = { version = "0.11.23", features = ["json", "native-tls-vendored"] }
|
|
rss = { version = "2.0.6", features = ["serde", "atom", "atom_syndication", "chrono", "with-serde"] }
|
|
rustcrypto = "0.0.0"
|
|
serde = { version = "1.0.195", features = ["derive"] }
|
|
sqlx = { version = "0.7.3", features = ["runtime-tokio", "sqlite"] }
|
|
tokio = { version = "1.35.1", features = ["full"] }
|
|
toml = "0.8.8"
|