Skip to content

Commit

Permalink
upgrade shared to v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yngrtc committed Mar 11, 2024
1 parent 00294a9 commit f9b4006
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion reserved/rtc-turn/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ homepage = "https://webrtc.rs"
repository = "https://github.com/webrtc-rs/rtc"

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

bytes = "1.4.0"
Expand Down
2 changes: 1 addition & 1 deletion rtc-datachannel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ homepage = "https://webrtc.rs"
repository = "https://github.com/webrtc-rs/rtc"

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

bytes = "1"
Expand Down
2 changes: 1 addition & 1 deletion rtc-dtls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ homepage = "https://webrtc.rs"
repository = "https://github.com/webrtc-rs/rtc"

[dependencies]
shared = { version = "0.1.1", path = "../rtc-shared", package = "rtc-shared", default-features = false, features = ["crypto", "replay"] }
shared = { version = "0.2.0", path = "../rtc-shared", package = "rtc-shared", default-features = false, features = ["crypto", "replay"] }

bytes = "1.4"
byteorder = "1"
Expand Down
2 changes: 1 addition & 1 deletion rtc-ice/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ homepage = "https://webrtc.rs"
repository = "https://github.com/webrtc-rs/rtc"

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

crc = "3.0.1"
Expand Down
2 changes: 1 addition & 1 deletion rtc-rtcp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ homepage = "https://webrtc.rs"
repository = "https://github.com/webrtc-rs/rtc"

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

bytes = "1"
thiserror = "1"
2 changes: 1 addition & 1 deletion rtc-rtp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ homepage = "https://webrtc.rs"
repository = "https://github.com/webrtc-rs/rtc"

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

bytes = "1"
rand = "0.8"
Expand Down
2 changes: 1 addition & 1 deletion rtc-sctp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ homepage = "https://webrtc.rs"
repository = "https://github.com/webrtc-rs/rtc"

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

bytes = "1"
fxhash = "0.2"
Expand Down
18 changes: 9 additions & 9 deletions rtc-shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rtc-shared"
version = "0.1.1"
version = "0.2.0"
authors = ["Rain Liu <yliu@webrtc.rs>"]
edition = "2021"
description = "RTC Shared in Rust"
Expand All @@ -16,12 +16,12 @@ marshal = []
replay = []

[dependencies]
thiserror = "1"
bytes = "1.4"
aes-gcm = { version = "0.10", features = ["std"] }
url = "2.2"
rcgen = "0.12"
sec1 = { version = "0.7", features = ["std"] }
p256 = { version = "0.13", features = ["default", "ecdh", "ecdsa"] }
aes = "0.8"
thiserror = "1.0.57"
bytes = "1.5.0"
aes-gcm = { version = "0.10.3", features = ["std"] }
url = "2.5.0"
rcgen = "0.12.1"
sec1 = { version = "0.7.3", features = ["std"] }
p256 = { version = "0.13.2", features = ["default", "ecdh", "ecdsa"] }
aes = "0.8.4"
retty = "0.29.0"
2 changes: 1 addition & 1 deletion rtc-srtp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ homepage = "https://webrtc.rs"
repository = "https://github.com/webrtc-rs/rtc"

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

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

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

bytes = "1.4"
lazy_static = "1.4"
Expand Down

0 comments on commit f9b4006

Please sign in to comment.