diff --git a/Cargo.lock b/Cargo.lock index 1c8c280..21a4ce1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2335,9 +2335,9 @@ dependencies = [ [[package]] name = "sbd-client" -version = "0.0.7-alpha" +version = "0.0.8-alpha" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edff08e64eed2000fa285339a6b258bd0221af90f83890a15a28cfde0f7c08f0" +checksum = "7af51493c7b0233ad96af18edaace4190d19a1b3b7c231f61b4a0c7f9bf13ef7" dependencies = [ "base64 0.22.1", "ed25519-dalek", @@ -2354,9 +2354,9 @@ dependencies = [ [[package]] name = "sbd-e2e-crypto-client" -version = "0.0.7-alpha" +version = "0.0.8-alpha" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e03a626b13060a9ffc48b112a7c67e860e43256be001c9c4b9bb566c040dd0c" +checksum = "6213eb9eaa35d0e8e57172e5367f2a9c3cfd6011db268143a14c6324ea15c13b" dependencies = [ "sbd-client", "sodoken", @@ -2366,9 +2366,9 @@ dependencies = [ [[package]] name = "sbd-server" -version = "0.0.7-alpha" +version = "0.0.8-alpha" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c0b583705127c7807a491c5ec849b989dd336c469e95762ce1691cdb10b2b6f" +checksum = "1cda36e498d8b8d32fda399807b58c68f939a54777c104287840264725338ce9" dependencies = [ "anstyle", "base64 0.22.1", @@ -2999,7 +2999,7 @@ dependencies = [ [[package]] name = "tx5" -version = "0.1.4-beta" +version = "0.1.5-beta" dependencies = [ "base64 0.22.1", "criterion", @@ -3019,7 +3019,7 @@ dependencies = [ [[package]] name = "tx5-connection" -version = "0.1.4-beta" +version = "0.1.5-beta" dependencies = [ "bit_field", "datachannel", @@ -3038,7 +3038,7 @@ dependencies = [ [[package]] name = "tx5-core" -version = "0.1.4-beta" +version = "0.1.5-beta" dependencies = [ "app_dirs2", "base64 0.22.1", @@ -3055,7 +3055,7 @@ dependencies = [ [[package]] name = "tx5-demo" -version = "0.1.4-beta" +version = "0.1.5-beta" dependencies = [ "base64 0.22.1", "bytes", @@ -3077,7 +3077,7 @@ dependencies = [ [[package]] name = "tx5-go-pion" -version = "0.1.4-beta" +version = "0.1.5-beta" dependencies = [ "futures", "parking_lot", @@ -3092,7 +3092,7 @@ dependencies = [ [[package]] name = "tx5-go-pion-sys" -version = "0.1.4-beta" +version = "0.1.5-beta" dependencies = [ "Inflector", "base64 0.22.1", @@ -3110,7 +3110,7 @@ dependencies = [ [[package]] name = "tx5-go-pion-turn" -version = "0.1.4-beta" +version = "0.1.5-beta" dependencies = [ "base64 0.22.1", "dirs", @@ -3127,7 +3127,7 @@ dependencies = [ [[package]] name = "tx5-online" -version = "0.1.4-beta" +version = "0.1.5-beta" dependencies = [ "once_cell", "rand", @@ -3138,7 +3138,7 @@ dependencies = [ [[package]] name = "tx5-signal" -version = "0.1.4-beta" +version = "0.1.5-beta" dependencies = [ "rand", "sbd-e2e-crypto-client", diff --git a/Cargo.toml b/Cargo.toml index 8d22a56..3a56278 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,8 +46,8 @@ ring = "0.16.20" rustls = { version = "0.20.0", features = [ "dangerous_configuration" ] } rustls-native-certs = "0.6.2" rustls-pemfile = "1.0.2" -sbd-e2e-crypto-client = "0.0.7-alpha" -sbd-server = "0.0.7-alpha" +sbd-e2e-crypto-client = "0.0.8-alpha" +sbd-server = "0.0.8-alpha" serde = { version = "1.0.160", features = [ "derive", "rc" ] } serde_json = { version = "1.0.96", features = [ "preserve_order" ] } sha2 = "0.10.6" @@ -62,13 +62,13 @@ tracing = "0.1.37" tracing-appender = "0.2.2" tracing-subscriber = { version = "0.3.16", features = [ "env-filter" ] } trust-dns-resolver = "0.22.0" -tx5-connection = { version = "0.1.4-beta", default-features = false, path = "crates/tx5-connection" } -tx5-core = { version = "0.1.4-beta", default-features = false, path = "crates/tx5-core" } -tx5-go-pion-turn = { version = "0.1.4-beta", path = "crates/tx5-go-pion-turn" } -tx5-go-pion-sys = { version = "0.1.4-beta", path = "crates/tx5-go-pion-sys" } -tx5-go-pion = { version = "0.1.4-beta", path = "crates/tx5-go-pion" } -tx5-signal = { version = "0.1.4-beta", path = "crates/tx5-signal" } -tx5 = { version = "0.1.4-beta", path = "crates/tx5" } +tx5-connection = { version = "0.1.5-beta", default-features = false, path = "crates/tx5-connection" } +tx5-core = { version = "0.1.5-beta", default-features = false, path = "crates/tx5-core" } +tx5-go-pion-turn = { version = "0.1.5-beta", path = "crates/tx5-go-pion-turn" } +tx5-go-pion-sys = { version = "0.1.5-beta", path = "crates/tx5-go-pion-sys" } +tx5-go-pion = { version = "0.1.5-beta", path = "crates/tx5-go-pion" } +tx5-signal = { version = "0.1.5-beta", path = "crates/tx5-signal" } +tx5 = { version = "0.1.5-beta", path = "crates/tx5" } url = { version = "2.3.1", features = [ "serde" ] } warp = { version = "0.3.4", features = [ "websocket" ] } webpki-roots = { version = "0.23.0" } diff --git a/crates/tx5-connection/Cargo.toml b/crates/tx5-connection/Cargo.toml index f72250c..c347e98 100644 --- a/crates/tx5-connection/Cargo.toml +++ b/crates/tx5-connection/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tx5-connection" -version = "0.1.4-beta" +version = "0.1.5-beta" description = "holochain webrtc connection" license = "MIT OR Apache-2.0" homepage = "https://github.com/holochain/tx5" diff --git a/crates/tx5-core/Cargo.toml b/crates/tx5-core/Cargo.toml index 1e7c503..a99bbb4 100644 --- a/crates/tx5-core/Cargo.toml +++ b/crates/tx5-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tx5-core" -version = "0.1.4-beta" +version = "0.1.5-beta" edition = "2021" description = "Holochain WebRTC P2P Communication Ecosystem Core Types" license = "MIT OR Apache-2.0" diff --git a/crates/tx5-demo/Cargo.toml b/crates/tx5-demo/Cargo.toml index 66776b3..e405475 100644 --- a/crates/tx5-demo/Cargo.toml +++ b/crates/tx5-demo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tx5-demo" -version = "0.1.4-beta" +version = "0.1.5-beta" edition = "2021" description = "Demo crate showing off Tx5 WebRTC functionality" license = "MIT OR Apache-2.0" diff --git a/crates/tx5-go-pion-sys/Cargo.toml b/crates/tx5-go-pion-sys/Cargo.toml index abe6fe5..87e3e64 100644 --- a/crates/tx5-go-pion-sys/Cargo.toml +++ b/crates/tx5-go-pion-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tx5-go-pion-sys" -version = "0.1.4-beta" +version = "0.1.5-beta" edition = "2021" description = "Low level rust bindings to the go pion webrtc library" license = "MIT OR Apache-2.0" diff --git a/crates/tx5-go-pion-turn/Cargo.toml b/crates/tx5-go-pion-turn/Cargo.toml index 9dc879c..de34a50 100644 --- a/crates/tx5-go-pion-turn/Cargo.toml +++ b/crates/tx5-go-pion-turn/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tx5-go-pion-turn" -version = "0.1.4-beta" +version = "0.1.5-beta" edition = "2021" description = "Rust process wrapper around tx5-go-pion-turn executable" license = "MIT OR Apache-2.0" diff --git a/crates/tx5-go-pion/Cargo.toml b/crates/tx5-go-pion/Cargo.toml index dca2fa0..a6d12fe 100644 --- a/crates/tx5-go-pion/Cargo.toml +++ b/crates/tx5-go-pion/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tx5-go-pion" -version = "0.1.4-beta" +version = "0.1.5-beta" edition = "2021" description = "Rust bindings to the go pion webrtc library" license = "MIT OR Apache-2.0" diff --git a/crates/tx5-online/Cargo.toml b/crates/tx5-online/Cargo.toml index b06caae..93cd716 100644 --- a/crates/tx5-online/Cargo.toml +++ b/crates/tx5-online/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tx5-online" -version = "0.1.4-beta" +version = "0.1.5-beta" edition = "2021" description = "Holochain WebRTC P2P Communication Ecosystem Online Connectivity Events" license = "MIT OR Apache-2.0" diff --git a/crates/tx5-signal/Cargo.toml b/crates/tx5-signal/Cargo.toml index e55e25b..a95960f 100644 --- a/crates/tx5-signal/Cargo.toml +++ b/crates/tx5-signal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tx5-signal" -version = "0.1.4-beta" +version = "0.1.5-beta" description = "holochain webrtc signal client" license = "MIT OR Apache-2.0" homepage = "https://github.com/holochain/tx5" diff --git a/crates/tx5/Cargo.toml b/crates/tx5/Cargo.toml index 9383de1..d66ef9c 100644 --- a/crates/tx5/Cargo.toml +++ b/crates/tx5/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tx5" -version = "0.1.4-beta" +version = "0.1.5-beta" edition = "2021" description = "The main holochain tx5 webrtc networking crate" license = "MIT OR Apache-2.0"