Switch to git dep so build system will work
Some checks failed
Cargo Build & Test / Rust project - latest (stable) (push) Failing after 22s

This commit is contained in:
2026-07-02 21:59:01 -05:00
parent dd11f0a224
commit 59058207f4
6 changed files with 46 additions and 15 deletions

View File

@@ -6,12 +6,27 @@ edition = "2024"
[dependencies]
base64 = "0.22.1"
chrono = { version = "0.4.41", features = ["serde"] }
rocket = { path = "../rocket/core/lib", features = ["json", "tls", "secrets"] }
rocket_dyn_templates = { path = "../rocket/contrib/dyn_templates", features = ["tera"] }
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"
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"]