diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-01-25 03:31:59 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-01-25 03:31:59 +0100 |
| commit | 53361f4c6027d1569a707ce58889bc2c2ea3749c (patch) | |
| tree | 65ccafebd8df99019b039cc0d94c61291b1fd437 /server/Cargo.toml | |
| parent | e3708145efd0bbed5d10320ee0a0deff0f38479e (diff) | |
| download | jellything-53361f4c6027d1569a707ce58889bc2c2ea3749c.tar jellything-53361f4c6027d1569a707ce58889bc2c2ea3749c.tar.bz2 jellything-53361f4c6027d1569a707ce58889bc2c2ea3749c.tar.zst | |
finish migrating auth code; refactor config/state more
Diffstat (limited to 'server/Cargo.toml')
| -rw-r--r-- | server/Cargo.toml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/server/Cargo.toml b/server/Cargo.toml index 01854b5..534dce5 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -9,10 +9,13 @@ jellystream = { path = "../stream" } jellytranscoder = { path = "../transcoder" } jellyimport = { path = "../import" } jellycache = { path = "../cache" } +jellydb = { path = "../database" } jellyui = { path = "../ui" } -jellykv = { path = "../kv" } +jellykv = { path = "../kv", features = ["rocksdb"] } +aes-gcm-siv = "0.11.1" anyhow = { workspace = true } +argon2 = "0.5.3" async-recursion = "1.1.1" base64 = "0.22.1" bincode = { version = "2.0.1", features = ["serde", "derive"] } @@ -29,6 +32,3 @@ serde_json = "1.0.145" serde_yaml_ng = "0.10.0" tokio = { workspace = true } tokio-util = { version = "0.7.17", features = ["io", "io-util"] } - -[features] -bypass-auth = [] |