[package] name = "jellything" version = "0.1.0" edition = "2021" [dependencies] jellycommon = { path = "../common", features = ["rocket"] } jellybase = { path = "../base" } jellystream = { path = "../stream" } jellyclient = { path = "../client" } jellytranscoder = { path = "../transcoder" } serde = { version = "1.0.188", features = ["derive"] } bincode = { version = "2.0.0-rc.3", features = ["serde", "derive"] } serde_json = "1.0.107" log = { workspace = true } anyhow = { workspace = true } env_logger = "0.10.0" rand = "0.8.5" base64 = "0.21.4" chrono = { version = "0.4.31", features = ["serde"] } vte = "0.12.0" argon2 = "0.5.2" aes-gcm-siv = "0.11.1" async-recursion = "1.0.5" futures = "0.3.28" tokio = { workspace = true } tokio-util = { version = "0.7.9", features = ["io", "io-util"] } markup = "0.13.1" rocket = { workspace = true, features = ["secrets", "json"] } sled = "0.34.7" typed-sled = "0.2.3" [build-dependencies] glob = "0.3.1" [features] bypass-auth = []