Skip to content

Commit

Permalink
bump rtc-shared to v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yngrtc committed Mar 2, 2024
1 parent d819c93 commit e35d0b1
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion data/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description = "DataChannel in Rust"
license = "MIT/Apache-2.0"

[dependencies]
shared = { path = "../shared", package = "shared", default-features = false, features = ["marshal"] }
shared = { path = "../shared", package = "rtc-shared", default-features = false, features = ["marshal"] }
sctp = { path = "../sctp", package = "sctp" }

bytes = "1"
Expand Down
2 changes: 1 addition & 1 deletion dtls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description = "DTLS in Rust"
license = "MIT/Apache-2.0"

[dependencies]
shared = { path = "../shared", package = "shared", default-features = false, features = ["crypto", "replay"] }
shared = { path = "../shared", package = "rtc-shared", default-features = false, features = ["crypto", "replay"] }
retty = "0.24"
bytes = "1.4"
byteorder = "1"
Expand Down
2 changes: 1 addition & 1 deletion dtls/examples_wip/hub/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"

[dependencies]
util = { version = "0.7.0", package = "webrtc-util", default-features = false, features = ["conn"] }
shared = { path = "../../../shared", package = "shared", default-features = false, features = [] }
shared = { path = "../../../shared", package = "rtc-shared", default-features = false, features = [] }
dtls = { package = "dtls", path = "../../" }

tokio = { version = "1", features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion rtcp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description = "RTCP in Rust"
license = "MIT/Apache-2.0"

[dependencies]
shared = { path = "../shared", package = "shared", default-features = false, features = ["marshal"] }
shared = { path = "../shared", package = "rtc-shared", default-features = false, features = ["marshal"] }

bytes = "1"
thiserror = "1.0"
2 changes: 1 addition & 1 deletion rtp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description = "RTP in Rust"
license = "MIT/Apache-2.0"

[dependencies]
shared = { path = "../shared", package = "shared", default-features = false, features = ["marshal"] }
shared = { path = "../shared", package = "rtc-shared", default-features = false, features = ["marshal"] }

bytes = "1"
rand = "0.8.5"
Expand Down
2 changes: 1 addition & 1 deletion sctp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description = "SCTP in Rust"
license = "MIT/Apache-2.0"

[dependencies]
shared = { path = "../shared", package = "shared", default-features = false, features = [] }
shared = { path = "../shared", package = "rtc-shared", default-features = false, features = [] }

retty = "0.24.0"
bytes = "1.4.0"
Expand Down
4 changes: 2 additions & 2 deletions shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shared"
version = "0.0.0"
name = "rtc-shared"
version = "0.1.0"
authors = ["Rain Liu <yliu@webrtc.rs>"]
edition = "2021"
description = "Shared in Rust"
Expand Down
2 changes: 1 addition & 1 deletion srtp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description = "SRTP in Rust"
license = "MIT/Apache-2.0"

[dependencies]
shared = { path = "../shared", package = "shared", default-features = false, features = ["crypto", "marshal", "replay"] }
shared = { path = "../shared", package = "rtc-shared", default-features = false, features = ["crypto", "marshal", "replay"] }
rtp = { path = "../rtp", package = "rtp" }
rtcp = { path = "../rtcp", package = "rtcp" }

Expand Down
2 changes: 1 addition & 1 deletion stun/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ default = []
bench = []

[dependencies]
shared = { path = "../shared", package = "shared", default-features = false, features = [] }
shared = { path = "../shared", package = "rtc-shared", default-features = false, features = [] }
retty = "0.24"
bytes = "1.4"

Expand Down

0 comments on commit e35d0b1

Please sign in to comment.