aboutsummaryrefslogtreecommitdiff
path: root/server/Cargo.toml
blob: 84b978a1bf65874206357e899e7c4358fd0e3dfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "jellything"
version = "0.1.1"
edition = "2024"

[dependencies]
jellycommon = { path = "../common" }
jellystream = { path = "../stream" }
jellytranscoder = { path = "../transcoder" }
jellyimport = { path = "../import" }
jellycache = { path = "../cache" }
jellyui = { path = "../ui" }
jellylogic = { path = "../logic" }

anyhow = { workspace = true }
async-recursion = "1.1.1"
base64 = "0.22.1"
bincode = { version = "2.0.1", features = ["serde", "derive"] }
chashmap = "2.2.2"
chrono = { version = "0.4.42", features = ["serde"] }
env_logger = "0.11.8"
futures = "0.3.31"
log = { workspace = true }
rand = "0.9.2"
rocket = { workspace = true, features = ["secrets", "json"] }
rocket_ws = { workspace = true }
serde = { version = "1.0.228", features = ["derive", "rc"] }
serde_json = "1.0.145"
serde_yaml_ng = "0.10.0"
tokio = { workspace = true }
tokio-util = { version = "0.7.17", features = ["io", "io-util"] }

[build-dependencies]
glob = "0.3.3"

[features]
bypass-auth = []
hot-css = []