Initial implementation

This commit is contained in:
2025-09-27 00:29:57 -05:00
commit 957bf1b549
13 changed files with 4671 additions and 0 deletions

15
Cargo.toml Normal file
View File

@@ -0,0 +1,15 @@
[package]
name = "gpodder-rs"
version = "0.1.0"
edition = "2024"
[dependencies]
base64 = "0.22.1"
chrono = { version = "0.4.41", features = ["serde"] }
rocket = { path = "../rocket/core/lib", features = ["json", "tls", "secrets"] }
rocket_db_pools = { path = "../rocket/contrib/db_pools/lib", features = ["sqlx_sqlite", "sqlx_macros"] }
sqlx = "*"
semver = { version = "1.0.26", features = ["serde"] }
password-hash = { version = "0.5.0", features = ["std"] }
argon2 = { version = "0.5.3", features = ["std"] }
lazy_static = "1.5.0"