Skip to content

Commit bc573b0

Browse files
authored
Merge pull request #409 from koushiro/update-some-deps
update some dependencies and remove some useless dependencies
2 parents 6f1bdad + 3bacf36 commit bc573b0

File tree

18 files changed

+29
-37
lines changed

18 files changed

+29
-37
lines changed

constraints/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,12 @@ license = "MIT/Apache-2.0"
88
documentation = "https://docs.rs/webrtc-constraints"
99
homepage = "https://webrtc.rs"
1010
repository = "https://github.com/webrtc-rs/constraints"
11-
rust-version = "1.60.0"
11+
rust-version = "1.63.0"
1212

1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
1616
indexmap = "1.9.1"
17-
log = "0.4.17"
1817
serde = { version = "1.0.137", features = ["derive"], optional = true }
1918
ordered-float = { version = "3.0.0", default-features = false }
2019

data/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT/Apache-2.0"
88
documentation = "https://docs.rs/webrtc-data"
99
homepage = "https://webrtc.rs"
1010
repository = "https://github.com/webrtc-rs/data"
11-
rust-version = "1.60.0"
11+
rust-version = "1.63.0"
1212

1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

dtls/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT/Apache-2.0"
88
documentation = "https://docs.rs/webrtc-dtls"
99
homepage = "https://webrtc.rs"
1010
repository = "https://github.com/webrtc-rs/dtls"
11-
rust-version = "1.60.0"
11+
rust-version = "1.63.0"
1212

1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

@@ -37,10 +37,9 @@ tokio = { version = "1.19", features = ["full"] }
3737
async-trait = "0.1.56"
3838
x25519-dalek = "2.0.0-pre.1"
3939
signature = "1.2.2"
40-
oid-registry = "0.6.0"
4140
x509-parser = "0.13.2"
4241
der-parser = "8.1"
43-
rcgen = "0.9.2"
42+
rcgen = "0.10.0"
4443
ring = "0.16.19"
4544
webpki = "0.21.4"
4645
rustls = { version = "0.19.0", features = ["dangerous_configuration"]}

dtls/examples/hub/Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ util = { path = "../../../util", package = "webrtc-util", default-features = fal
1010
dtls = { package = "webrtc-dtls", path = "../../" }
1111

1212
tokio = { version = "1", features = ["full"] }
13-
x509-parser = "0.13"
14-
rcgen = { version = "0.9", features = ["pem", "x509-parser"] }
15-
ring = "0.16"
13+
rcgen = { version = "0.10", features = ["pem", "x509-parser"] }
1614
rustls = "0.19"
17-
log = "0.4.16"
1815
thiserror = "1"

examples/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT/Apache-2.0"
88
documentation = "https://docs.rs/examples"
99
homepage = "https://webrtc.rs"
1010
repository = "https://github.com/webrtc-rs/examples"
11-
rust-version = "1.60.0"
11+
rust-version = "1.63.0"
1212

1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

@@ -23,7 +23,7 @@ env_logger = "0.9"
2323
clap = "3.0"
2424
hyper = { version = "0.14", features = ["full"] }
2525
signal = { path = "examples/signal" }
26-
tokio-util = { version="0.6", features = ["codec"] }
26+
tokio-util = { version = "0.7", features = ["codec"] }
2727
anyhow = "1.0"
2828
chrono = "0.4.23"
2929
log = "0.4.16"

ice/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT/Apache-2.0"
88
documentation = "https://docs.rs/webrtc-ice"
99
homepage = "https://webrtc.rs"
1010
repository = "https://github.com/webrtc-rs/ice"
11-
rust-version = "1.60.0"
11+
rust-version = "1.63.0"
1212

1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

interceptor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT/Apache-2.0"
88
documentation = "https://docs.rs/interceptor"
99
homepage = "https://webrtc.rs"
1010
repository = "https://github.com/webrtc-rs/interceptor"
11-
rust-version = "1.60.0"
11+
rust-version = "1.63.0"
1212

1313
[dependencies]
1414
util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal", "sync"] }

mdns/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT/Apache-2.0"
88
documentation = "https://docs.rs/webrtc-mdns"
99
homepage = "https://webrtc.rs"
1010
repository = "https://github.com/webrtc-rs/mdns"
11-
rust-version = "1.60.0"
11+
rust-version = "1.63.0"
1212

1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

media/Cargo.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,20 @@ license = "MIT/Apache-2.0"
88
documentation = "https://docs.rs/webrtc-media"
99
homepage = "https://webrtc.rs"
1010
repository = "https://github.com/webrtc-rs/media"
11-
rust-version = "1.60.0"
11+
rust-version = "1.63.0"
1212

1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal"] }
1716
rtp = { version = "0.6.7", path = "../rtp" }
1817

1918
byteorder = "1"
2019
bytes = "1"
21-
displaydoc = "0.2.3"
2220
thiserror = "1.0"
2321
rand = "0.8.5"
2422

2523
[dev-dependencies]
26-
criterion = { version = "0.3.5", features = ["html_reports"] }
24+
criterion = { version = "0.4.0", features = ["html_reports"] }
2725
nearly_eq = "0.2.4"
2826

2927
[[bench]]

rtcp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT/Apache-2.0"
88
documentation = "https://docs.rs/rtcp"
99
homepage = "https://webrtc.rs"
1010
repository = "https://github.com/webrtc-rs/rtcp"
11-
rust-version = "1.60.0"
11+
rust-version = "1.63.0"
1212

1313
[dependencies]
1414
util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal"] }

0 commit comments

Comments
 (0)