Skip to content

Commit

Permalink
bump to pion v4
Browse files Browse the repository at this point in the history
  • Loading branch information
neonphog committed Oct 15, 2024
1 parent 60c2321 commit 6c37511
Show file tree
Hide file tree
Showing 21 changed files with 109 additions and 321 deletions.
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,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.3-beta", default-features = false, path = "crates/tx5-connection" }
tx5-core = { version = "0.1.3-beta", default-features = false, path = "crates/tx5-core" }
tx5-go-pion-turn = { version = "0.1.3-beta", path = "crates/tx5-go-pion-turn" }
tx5-go-pion-sys = { version = "0.1.3-beta", path = "crates/tx5-go-pion-sys" }
tx5-go-pion = { version = "0.1.3-beta", path = "crates/tx5-go-pion" }
tx5-signal = { version = "0.1.3-beta", path = "crates/tx5-signal" }
tx5 = { version = "0.1.3-beta", path = "crates/tx5" }
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" }
url = { version = "2.3.1", features = [ "serde" ] }
warp = { version = "0.3.4", features = [ "websocket" ] }
webpki-roots = { version = "0.23.0" }
Expand Down
2 changes: 1 addition & 1 deletion crates/tx5-connection/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tx5-connection"
version = "0.1.3-beta"
version = "0.1.4-beta"
description = "holochain webrtc connection"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/holochain/tx5"
Expand Down
2 changes: 1 addition & 1 deletion crates/tx5-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tx5-core"
version = "0.1.3-beta"
version = "0.1.4-beta"
edition = "2021"
description = "Holochain WebRTC P2P Communication Ecosystem Core Types"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/tx5-demo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tx5-demo"
version = "0.1.3-beta"
version = "0.1.4-beta"
edition = "2021"
description = "Demo crate showing off Tx5 WebRTC functionality"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/tx5-go-pion-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tx5-go-pion-sys"
version = "0.1.3-beta"
version = "0.1.4-beta"
edition = "2021"
description = "Low level rust bindings to the go pion webrtc library"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/tx5-go-pion-sys/datachannel.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"sync"
"unsafe"

"github.com/pion/webrtc/v3"
"github.com/pion/webrtc/v4"
)

type DataChan struct {
Expand Down
39 changes: 18 additions & 21 deletions crates/tx5-go-pion-sys/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,27 @@ go 1.20

require (
github.com/pion/logging v0.2.2
github.com/pion/webrtc/v3 v3.2.24
github.com/pion/webrtc/v4 v4.0.1
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/pion/datachannel v1.5.5 // indirect
github.com/pion/dtls/v2 v2.2.9 // indirect
github.com/pion/ice/v2 v2.3.12 // indirect
github.com/pion/interceptor v0.1.25 // indirect
github.com/pion/mdns v0.0.9 // indirect
github.com/pion/datachannel v1.5.9 // indirect
github.com/pion/dtls/v3 v3.0.3 // indirect
github.com/pion/ice/v4 v4.0.2 // indirect
github.com/pion/interceptor v0.1.37 // indirect
github.com/pion/mdns/v2 v2.0.7 // indirect
github.com/pion/randutil v0.1.0 // indirect
github.com/pion/rtcp v1.2.13 // indirect
github.com/pion/rtp v1.8.3 // indirect
github.com/pion/sctp v1.8.9 // indirect
github.com/pion/sdp/v3 v3.0.6 // indirect
github.com/pion/srtp/v2 v2.0.18 // indirect
github.com/pion/stun v0.6.1 // indirect
github.com/pion/transport/v2 v2.2.4 // indirect
github.com/pion/turn/v2 v2.1.4 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/testify v1.8.4 // indirect
golang.org/x/crypto v0.18.0 // indirect
golang.org/x/net v0.20.0 // indirect
golang.org/x/sys v0.16.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
github.com/pion/rtcp v1.2.14 // indirect
github.com/pion/rtp v1.8.9 // indirect
github.com/pion/sctp v1.8.33 // indirect
github.com/pion/sdp/v3 v3.0.9 // indirect
github.com/pion/srtp/v3 v3.0.4 // indirect
github.com/pion/stun/v3 v3.0.0 // indirect
github.com/pion/transport/v3 v3.0.7 // indirect
github.com/pion/turn/v4 v4.0.0 // indirect
github.com/wlynxg/anet v0.0.5 // indirect
golang.org/x/crypto v0.28.0 // indirect
golang.org/x/net v0.30.0 // indirect
golang.org/x/sys v0.26.0 // indirect
)
Loading

0 comments on commit 6c37511

Please sign in to comment.