made it work with nix build system

This commit is contained in:
Maieul BOYER 2024-03-02 21:20:21 +00:00
parent faeaf43f80
commit 07f0f69cda

View file

@ -11,7 +11,6 @@ members = [".", "api", "gui", "migration", "web"]
anyhow = "1.0.79"
axum = { version = "0.7.4" }
base64 = "0.21.7"
jwt-simple = "0.12.7"
serde = { version = "1.0.195", features = ["derive"] }
tokio = { version = "1", features = ["macros", "rt", "rt-multi-thread"] }
tracing = "0.1.40"
@ -38,3 +37,9 @@ tower-sessions-sqlx-store = { version = "0.10.0", features = ["postgres"] }
[dependencies.sea-orm]
version = "0.12"
features = ["runtime-tokio-rustls", "sqlx-postgres", "sqlx-sqlite"]
[dependencies.jwt-simple] # FIXME: When boring-sys can be compiled remove this
default-features=false
features=["pure-rust"]
version = "0.12.7"