aboutsummaryrefslogtreecommitdiff
path: root/server/Cargo.toml
blob: 6648b8071be2c7caaf31a8c9a1bf781bb4d67ad1 (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
[package]
name = "jellything"
version = "0.1.0"
edition = "2021"

[dependencies]
jellycommon = { path = "../common" }
jellyremuxer = { path = "../remuxer" }
jellyclient = { path = "../client" }

serde = { version = "1.0.180", features = ["derive"] }
bincode = { version = "2.0.0-rc.3", features = ["serde", "derive"] }
serde_json = "1.0.104"

log = "0.4.19"
env_logger = "0.10.0"
anyhow = "1.0.72"
once_cell = "1.18.0"
chashmap = "2.2.2"
rand = "0.8.5"
base64 = "0.21.2"
chrono = { version = "0.4.26", features = ["serde"] }

argon2 = "0.5.1"
sha2 = "0.10.7"
aes-gcm-siv = "0.11.1"

async-std = "1.12.0"
async-recursion = "1.0.4"
tokio = { version = "1.29.1", features = ["io-util"] }
tokio-util = { version = "0.7.8", features = ["io", "io-util"] }

markup = "0.13.1"
rocket = { version = "0.5.0-rc.3", features = ["secrets", "json"] }

sled = "0.34.7"
typed-sled = "0.2.3"

[features]
bypass-auth = []