blob: 92071064fdbcdabb568cf01b6e0fb674d2c169ce (
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
|
[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" }
jellydb = { path = "../database" }
jellyui = { path = "../ui" }
jellykv = { path = "../kv", features = ["rocksdb", "memory"] }
aes-gcm-siv = "0.11.1"
anyhow = { workspace = true }
argon2 = "0.5.3"
async-recursion = "1.1.1"
base64 = "0.22.1"
chashmap = "2.2.2"
chrono = { version = "0.4.43", features = ["serde"] }
env_logger = "0.11.9"
futures = "0.3.32"
log = { workspace = true }
rand = "0.10.0"
rocket = { version = "0.5", features = ["json"] }
rocket_ws = "0.1"
serde = { version = "1.0.228", features = ["derive", "rc"] }
serde_json = "1.0.149"
serde_yaml_ng = "0.10.0"
tokio = { workspace = true }
tokio-util = { version = "0.7.18", features = ["io", "io-util"] }
[features]
reload_css = ["jellyui/reload_css"]
reload_js = ["jellyui/reload_js"]
|