User creation now possible!
Signed-off-by: Louis Hollingworth <louis@hollingworth.nl>
This commit is contained in:
parent
215cf639bd
commit
f671a5ba2f
12 changed files with 2185 additions and 44 deletions
14
Cargo.toml
14
Cargo.toml
|
|
@ -2,6 +2,11 @@
|
|||
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]
|
||||
|
||||
|
|
@ -14,9 +19,18 @@ 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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue