blob: ed60d72c3b27735c692dfa187c3e05fbd391f34a (
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
|
[package]
name = "jellything"
version = "0.1.0"
edition = "2021"
[dependencies]
jellycommon = { path = "../common" }
jellyremuxer = { path = "../remuxer" }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.91"
log = "0.4.17"
env_logger = "0.10.0"
anyhow = "1.0.68"
once_cell = "1.17.0"
chashmap = "2.2.2"
argon2 = "0.4.1"
rand = "0.8.5"
chrono = { version = "0.4.23", features = ["serde"] }
async-std = "1.12.0"
rocket = { version = "0.5.0-rc.2", features = ["secrets", "json"] }
tokio = { version = "1.24.1", features = ["io-util"] }
tokio-util = { version = "0.7.4", features = ["io", "io-util"] }
markup = "0.13.1"
sled = "0.34.7"
typed-sled = "0.2.3"
[features]
bypass-auth = []
|