mirror of
https://github.com/v0l/zap-stream-core.git
synced 2025-06-22 22:28:06 +00:00
refactor: convert to workspace
This commit is contained in:
43
crates/zap-stream/Cargo.toml
Normal file
43
crates/zap-stream/Cargo.toml
Normal file
@ -0,0 +1,43 @@
|
||||
[package]
|
||||
name = "zap-stream"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[features]
|
||||
default = ["srt", "rtmp"]
|
||||
srt = ["zap-stream-core/srt"]
|
||||
rtmp = ["zap-stream-core/rtmp"]
|
||||
test-pattern = ["zap-stream-core/test-pattern", "zap-stream-db/test-pattern"]
|
||||
|
||||
[dependencies]
|
||||
zap-stream-db = { path = "../zap-stream-db" }
|
||||
zap-stream-core = { path = "../core" }
|
||||
|
||||
uuid.workspace = true
|
||||
ffmpeg-rs-raw.workspace = true
|
||||
anyhow.workspace = true
|
||||
log.workspace = true
|
||||
tokio.workspace = true
|
||||
async-trait.workspace = true
|
||||
serde.workspace = true
|
||||
chrono.workspace = true
|
||||
hex.workspace = true
|
||||
url.workspace = true
|
||||
|
||||
# http setuff
|
||||
hyper = { version = "1.5.1", features = ["server"] }
|
||||
bytes = "1.8.0"
|
||||
http-body-util = "0.1.2"
|
||||
tokio-util = "0.7.13"
|
||||
hyper-util = "0.1.10"
|
||||
|
||||
# direct deps
|
||||
config = { version = "0.15.6", features = ["yaml"] }
|
||||
nostr-sdk = { version = "0.38.0" }
|
||||
fedimint-tonic-lnd = { version = "0.2.0", default-features = false, features = ["invoicesrpc", "versionrpc"] }
|
||||
reqwest = { version = "0.12.9", features = ["stream", "json"] }
|
||||
base64 = { version = "0.22.1" }
|
||||
sha2 = { version = "0.10.8" }
|
||||
pretty_env_logger = "0.5.0"
|
||||
clap = { version = "4.5.16", features = ["derive"] }
|
||||
futures-util = "0.3.31"
|
Reference in New Issue
Block a user