blob: 32d72b998b5a6190b098f2717cacc39ee73c0bbb (
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
39
40
41
42
43
|
[package]
name = "jellything"
version = "0.1.1"
edition = "2021"
[dependencies]
jellycommon = { path = "../common", features = ["rocket"] }
jellybase = { path = "../base" }
jellystream = { path = "../stream" }
jellytranscoder = { path = "../transcoder" }
jellyimport = { path = "../import" }
serde = { version = "1.0.193", features = ["derive"] }
bincode = { version = "2.0.0-rc.3", features = ["serde", "derive"] }
serde_json = "1.0.108"
log = { workspace = true }
anyhow = { workspace = true }
env_logger = "0.10.1"
rand = "0.8.5"
base64 = "0.21.5"
chrono = { version = "0.4.31", features = ["serde"] }
vte = "0.13.0"
chashmap = "2.2.2"
edit-distance = "2.1.0"
argon2 = "0.5.2"
aes-gcm-siv = "0.11.1"
async-recursion = "1.0.5"
futures = "0.3.29"
tokio = { workspace = true }
tokio-util = { version = "0.7.10", features = ["io", "io-util"] }
markup = "0.15.0"
rocket = { workspace = true, features = ["secrets", "json"] }
rocket_ws = { workspace = true }
[build-dependencies]
glob = "0.3.1"
[features]
bypass-auth = []
|