[package] name = "route96" version = "0.4.0" edition = "2021" [[bin]] name = "route96" path = "src/bin/main.rs" [lib] name = "route96" [features] default = ["nip96", "blossom", "analytics", "react-ui", "payments"] media-compression = ["dep:ffmpeg-rs-raw", "dep:libc"] labels = ["media-compression", "dep:candle-core", "dep:candle-nn", "dep:candle-transformers"] nip96 = ["media-compression"] blossom = [] analytics = [] react-ui = [] payments = ["dep:fedimint-tonic-lnd"] [dependencies] log = "0.4.21" nostr = "0.39.0" pretty_env_logger = "0.5.0" rocket = { version = "0.5.1", features = ["json"] } tokio = { version = "1.37.0", features = ["rt", "rt-multi-thread", "macros"] } base64 = "0.22.1" hex = { version = "0.4.3", features = ["serde"] } serde = { version = "1.0.198", features = ["derive"] } uuid = { version = "1.8.0", features = ["v4", "serde"] } anyhow = "^1.0.82" sha2 = "0.10.8" sqlx = { version = "0.8.1", features = ["mysql", "runtime-tokio", "chrono", "uuid"] } config = { version = "0.15.7", features = ["yaml"] } chrono = { version = "0.4.38", features = ["serde"] } reqwest = { version = "0.12.8", features = ["stream", "http2"] } clap = { version = "4.5.18", features = ["derive"] } mime2ext = "0.1.53" infer = "0.19.0" tokio-util = { version = "0.7.13", features = ["io", "io-util"] } http-range-header = { version = "0.4.2" } base58 = "0.2.0" libc = { version = "0.2.153", optional = true } ffmpeg-rs-raw = { git = "https://git.v0l.io/Kieran/ffmpeg-rs-raw.git", rev = "a63b88ef3c8f58c7c0ac57d361d06ff0bb3ed385", optional = true } candle-core = { git = "https://git.v0l.io/huggingface/candle.git", tag = "0.8.1", optional = true } candle-nn = { git = "https://git.v0l.io/huggingface/candle.git", tag = "0.8.1", optional = true } candle-transformers = { git = "https://git.v0l.io/huggingface/candle.git", tag = "0.8.1", optional = true } fedimint-tonic-lnd = { version = "0.2.0", optional = true, default-features = false, features = ["invoicesrpc", "lightningrpc"] }