29 lines
928 B
TOML
29 lines
928 B
TOML
[package]
|
|
name = "ec-tauri"
|
|
version = "0.0.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
axum = "0.7"
|
|
blake3.workspace = true
|
|
ec-crypto = { path = "../../crates/ec-crypto" }
|
|
ec-core = { path = "../../crates/ec-core" }
|
|
ec-chopper = { path = "../../crates/ec-chopper" }
|
|
ec-hdhomerun = { path = "../../crates/ec-hdhomerun" }
|
|
ec-linux-iptv = { path = "../../crates/ec-linux-iptv" }
|
|
ec-iroh = { path = "../../crates/ec-iroh" }
|
|
ec-moq = { path = "../../crates/ec-moq" }
|
|
hex = "0.4"
|
|
iroh = "0.96"
|
|
reqwest = { version = "0.12", default-features = false, features = ["blocking", "rustls-tls"] }
|
|
serde.workspace = true
|
|
serde_json = "1"
|
|
tauri = { version = "2", features = [] }
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
|
|
tower-http = { version = "0.5", features = ["fs"] }
|
|
tracing.workspace = true
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|