diff options
author | metamuffin <metamuffin@disroot.org> | 2025-04-30 10:47:54 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-04-30 10:47:54 +0200 |
commit | a2ef3f6ec4c830611fde1a2e935588ccbbc61c03 (patch) | |
tree | ddcc1cb501e6c7237edd491aa7136d02150d03d3 /server/Cargo.toml | |
parent | 212a0f23bc894faf88e159560c113f504349cc05 (diff) | |
download | jellything-a2ef3f6ec4c830611fde1a2e935588ccbbc61c03.tar jellything-a2ef3f6ec4c830611fde1a2e935588ccbbc61c03.tar.bz2 jellything-a2ef3f6ec4c830611fde1a2e935588ccbbc61c03.tar.zst |
config works
Diffstat (limited to 'server/Cargo.toml')
-rw-r--r-- | server/Cargo.toml | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/server/Cargo.toml b/server/Cargo.toml index 57d0c29..be8abdb 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -13,25 +13,23 @@ 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"] } -serde_json = "1.0.138" - -log = { workspace = true } anyhow = { workspace = true } -env_logger = "0.11.6" -rand = "0.9.0" +async-recursion = "1.1.1" base64 = "0.22.1" -chrono = { version = "0.4.39", features = ["serde"] } +bincode = { version = "2.0.0-rc.3", features = ["serde", "derive"] } chashmap = "2.2.2" - -async-recursion = "1.1.1" +chrono = { version = "0.4.39", features = ["serde"] } +env_logger = "0.11.6" futures = "0.3.31" -tokio = { workspace = true } -tokio-util = { version = "0.7.13", features = ["io", "io-util"] } - +log = { workspace = true } +rand = "0.9.0" rocket = { workspace = true, features = ["secrets", "json"] } rocket_ws = { workspace = true } +serde = { version = "1.0.217", features = ["derive", "rc"] } +serde_json = "1.0.138" +serde_yml = "0.0.12" +tokio = { workspace = true } +tokio-util = { version = "0.7.13", features = ["io", "io-util"] } [build-dependencies] glob = "0.3.2" |