Skip to content

Commit f9734b7

Browse files
daladimJérôme Froissart
andauthored
Fixed repository URLs (#575)
Co-authored-by: Jérôme Froissart <[email protected]>
1 parent 6b00f17 commit f9734b7

File tree

16 files changed

+16
-16
lines changed

16 files changed

+16
-16
lines changed

constraints/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description = "A pure Rust implementation of WebRTC Media Constraints API"
77
license = "MIT OR Apache-2.0"
88
documentation = "https://docs.rs/webrtc-constraints"
99
homepage = "https://webrtc.rs"
10-
repository = "https://github.com/webrtc-rs/constraints"
10+
repository = "https://github.com/webrtc-rs/webrtc/tree/master/constraints"
1111

1212
[dependencies]
1313
indexmap = "2"

data/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description = "A pure Rust implementation of WebRTC DataChannel API"
77
license = "MIT OR Apache-2.0"
88
documentation = "https://docs.rs/webrtc-data"
99
homepage = "https://webrtc.rs"
10-
repository = "https://github.com/webrtc-rs/data"
10+
repository = "https://github.com/webrtc-rs/webrtc/tree/master/data"
1111

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

dtls/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description = "A pure Rust implementation of DTLS"
77
license = "MIT OR Apache-2.0"
88
documentation = "https://docs.rs/webrtc-dtls"
99
homepage = "https://webrtc.rs"
10-
repository = "https://github.com/webrtc-rs/dtls"
10+
repository = "https://github.com/webrtc-rs/webrtc/tree/master/dtls"
1111

1212
[dependencies]
1313
util = { version = "0.9.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn"] }

examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description = "Examples of WebRTC.rs stack"
77
license = "MIT OR Apache-2.0"
88
documentation = "https://docs.rs/examples"
99
homepage = "https://webrtc.rs"
10-
repository = "https://github.com/webrtc-rs/examples"
10+
repository = "https://github.com/webrtc-rs/webrtc/tree/master/examples"
1111

1212
[dependencies]
1313

ice/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description = "A pure Rust implementation of ICE"
77
license = "MIT OR Apache-2.0"
88
documentation = "https://docs.rs/webrtc-ice"
99
homepage = "https://webrtc.rs"
10-
repository = "https://github.com/webrtc-rs/ice"
10+
repository = "https://github.com/webrtc-rs/webrtc/tree/master/ice"
1111

1212
[dependencies]
1313
util = { version = "0.9.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "vnet", "sync"] }

interceptor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description = "A pure Rust implementation of Pluggable RTP/RTCP processors"
77
license = "MIT OR Apache-2.0"
88
documentation = "https://docs.rs/interceptor"
99
homepage = "https://webrtc.rs"
10-
repository = "https://github.com/webrtc-rs/interceptor"
10+
repository = "https://github.com/webrtc-rs/webrtc/tree/master/interceptor"
1111

1212
[dependencies]
1313
util = { version = "0.9.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
@@ -7,7 +7,7 @@ description = "A pure Rust implementation of mDNS"
77
license = "MIT OR Apache-2.0"
88
documentation = "https://docs.rs/webrtc-mdns"
99
homepage = "https://webrtc.rs"
10-
repository = "https://github.com/webrtc-rs/mdns"
10+
repository = "https://github.com/webrtc-rs/webrtc/tree/master/mdns"
1111

1212
[features]
1313
default = [ "reuse_port" ]

media/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description = "A pure Rust implementation of WebRTC Media API"
77
license = "MIT OR Apache-2.0"
88
documentation = "https://docs.rs/webrtc-media"
99
homepage = "https://webrtc.rs"
10-
repository = "https://github.com/webrtc-rs/media"
10+
repository = "https://github.com/webrtc-rs/webrtc/tree/master/media"
1111

1212
[dependencies]
1313
rtp = { version = "0.11.0", path = "../rtp" }

rtcp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description = "A pure Rust implementation of RTCP"
77
license = "MIT OR Apache-2.0"
88
documentation = "https://docs.rs/rtcp"
99
homepage = "https://webrtc.rs"
10-
repository = "https://github.com/webrtc-rs/rtcp"
10+
repository = "https://github.com/webrtc-rs/webrtc/tree/master/rtcp"
1111

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

rtp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description = "A pure Rust implementation of RTP"
77
license = "MIT OR Apache-2.0"
88
documentation = "https://docs.rs/rtp"
99
homepage = "https://webrtc.rs"
10-
repository = "https://github.com/webrtc-rs/rtp"
10+
repository = "https://github.com/webrtc-rs/webrtc/tree/master/rtp"
1111

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

0 commit comments

Comments
 (0)