Some checks failed
Cargo Build & Test / Rust project - latest (stable) (push) Failing after 22s
33 lines
968 B
TOML
33 lines
968 B
TOML
[package]
|
|
name = "gpodder-rs"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
base64 = "0.22.1"
|
|
chrono = { version = "0.4.41", features = ["serde"] }
|
|
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"
|
|
either = "1.15.0"
|
|
|
|
[dependencies.rocket]
|
|
# path = "../rocket/core/lib"
|
|
git = "https://github.com/the10thWiz/Rocket.git"
|
|
rev = "ecceb93ba65d91dcf214000fa648d69cd74b95fb"
|
|
features = ["json", "tls", "secrets"]
|
|
|
|
[dependencies.rocket_dyn_templates]
|
|
# path = "../rocket/contrib/dyn_templates"
|
|
git = "https://github.com/the10thWiz/Rocket.git"
|
|
rev = "ecceb93ba65d91dcf214000fa648d69cd74b95fb"
|
|
features = ["tera"]
|
|
|
|
[dependencies.rocket_db_pools]
|
|
# path = "../rocket/contrib/db_pools/lib"
|
|
git = "https://github.com/the10thWiz/Rocket.git"
|
|
rev = "ecceb93ba65d91dcf214000fa648d69cd74b95fb"
|
|
features = ["sqlx_sqlite", "sqlx_macros"]
|