[package] name = "jellything" version = "0.1.0" edition = "2021" [dependencies] jellycommon = { path = "../common", features = ["rocket"] } jellybase = { path = "../base" } jellyremuxer = { path = "../remuxer" } 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.105" log = "0.4.20" env_logger = "0.10.0" anyhow = "1.0.75" rand = "0.8.5" base64 = "0.21.3" chrono = { version = "0.4.29", features = ["serde"] } vte = "0.11.1" argon2 = "0.5.2" aes-gcm-siv = "0.11.1" async-std = "1.12.0" async-recursion = "1.0.5" futures = "0.3.28" tokio = { version = "1.32.0", 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 = []