Skip to content
This repository was archived by the owner on Aug 23, 2022. It is now read-only.

Commit 425dc59

Browse files
committed
prepare crates.io publish
1 parent 733997f commit 425dc59

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

Cargo.toml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,20 @@
11
[package]
2-
name = "srtp"
2+
name = "webrtc-rs-srtp"
33
version = "0.1.0"
44
authors = ["Rain Liu <[email protected]>"]
55
edition = "2018"
6+
description = "A pure Rust implementation of SRTP"
7+
license = "MIT"
8+
documentation = "https://docs.rs/webrtc-rs-srtp"
9+
homepage = "https://webrtc.rs"
10+
repository = "https://github.com/webrtc-rs/srtp"
611

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

914
[dependencies]
10-
util = { git = "https://github.com/webrtc-rs/util", branch = "main" }
11-
rtp = { git = "https://github.com/webrtc-rs/rtp", branch = "main" }
12-
rtcp = { git = "https://github.com/webrtc-rs/rtcp", branch = "main" }
15+
util = { package = "webrtc-rs-util", version = "0.1.0" }
16+
rtp = { package = "webrtc-rs-rtp", version = "0.1.0" }
17+
rtcp = { package = "webrtc-rs-rtcp", version = "0.1.0" }
1318
byteorder = "1.3.2"
1419
hmac = "0.10.1"
1520
sha-1 = "0.9.1"

0 commit comments

Comments
 (0)