[package] name = "tx5-go-pion-turn" version = "0.0.17-alpha" edition = "2021" description = "Rust process wrapper around tx5-go-pion-turn executable" license = "MIT OR Apache-2.0" repository = "https://github.com/holochain/tx5" documentation = "https://docs.rs/tx5-go-pion-turn" authors = [ "Holochain Core Dev Team " ] keywords = ["holochain", "holo", "p2p", "webrtc", "networking"] categories = ["network-programming"] exclude = [ # unzipped the vendor dir is > 10mb so we wouldn't be able to upload # to crates.io, hence the need for the zip file # actually this one is smaller, just coppied this logic from tx5-go-pion-sys "vendor/", ] [dependencies] base64 = { workspace = true } dirs = { workspace = true } dunce = { workspace = true } if-addrs = { workspace = true } once_cell = { workspace = true } sha2 = { workspace = true } tokio = { workspace = true, features = [ "process", "io-util" ] } tracing = { workspace = true } tx5-core = { workspace = true, features = [ "file_check" ] } [dev-dependencies] tokio = { workspace = true, features = [ "full" ] } tracing-subscriber = { workspace = true } [build-dependencies] base64 = { workspace = true } sha2 = { workspace = true } zip = { workspace = true }