diff options
Diffstat (limited to 'server/Cargo.toml')
-rw-r--r-- | server/Cargo.toml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/server/Cargo.toml b/server/Cargo.toml index 669194a..b658e61 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -4,12 +4,14 @@ version = "0.1.1" edition = "2021" [dependencies] -jellycommon = { path = "../common", features = ["rocket"] } +jellycommon = { path = "../common" } jellybase = { path = "../base" } jellystream = { path = "../stream" } jellytranscoder = { path = "../transcoder" } jellyimport = { path = "../import" } jellycache = { path = "../cache" } +jellyui = { path = "../ui" } +jellylogic = { path = "../logic" } serde = { version = "1.0.217", features = ["derive", "rc"] } bincode = { version = "2.0.0-rc.3", features = ["serde", "derive"] } @@ -24,9 +26,6 @@ chrono = { version = "0.4.39", features = ["serde"] } vte = "0.14.1" chashmap = "2.2.2" -argon2 = "0.5.3" -aes-gcm-siv = "0.11.1" - async-recursion = "1.1.1" futures = "0.3.31" tokio = { workspace = true } |