Live video on the AT Protocol
at natb/block-javascript-protocol 43 lines 1.1 kB view raw
1[package] 2name = "iroh-streamplace" 3version = "0.1.0" 4edition = "2024" 5 6[lib] 7name = "iroh_streamplace" 8crate-type = ["staticlib", "cdylib"] 9 10[dependencies] 11iroh = { version = "0.93", features = ["discovery-local-network"] } 12iroh-base = "0.93.0" 13tokio = "1.47.1" 14 15uniffi = { version = "=0.28.3", features = ["tokio"] } 16url = "2.5.4" 17bytes = { version = "1.10.1", features = ["serde"] } 18n0-future = "0.2.0" 19async-trait = "0.1.88" 20tracing = "0.1.41" 21tracing-subscriber = { version = "0.3.19", features = ["env-filter"] } 22snafu = "0.8.6" 23anyhow = "1.0.99" 24serde = { version = "1.0.219", features = ["derive"] } 25postcard = { version = "1.1.3", features = ["use-std"] } 26irpc = "0.9.0" 27irpc-iroh = "0.9.0" 28c2pa = { git = "https://github.com/streamplace/c2pa-rs.git", rev = "544825abfaf9e588813e18dba70c8d5afd039d46", features = [ 29 "openssl", 30 "file_io", 31] } 32thiserror = "2.0.16" 33serde_json = "1.0.145" 34iroh-smol-kv = { version = "0.3.1" } 35hex = "0.4.3" 36iroh-gossip = "0.93.1" 37ref-cast = "1.0.25" 38rand = "0.9" 39base64 = "0.22.1" 40 41[dev-dependencies] 42testresult = "0.4.1" 43tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }