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

Commit

Permalink
prepare crates.io publish
Browse files Browse the repository at this point in the history
  • Loading branch information
rainliu committed Dec 25, 2020
1 parent 733997f commit 425dc59
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
[package]
name = "srtp"
name = "webrtc-rs-srtp"
version = "0.1.0"
authors = ["Rain Liu <[email protected]>"]
edition = "2018"
description = "A pure Rust implementation of SRTP"
license = "MIT"
documentation = "https://docs.rs/webrtc-rs-srtp"
homepage = "https://webrtc.rs"
repository = "https://github.com/webrtc-rs/srtp"

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

[dependencies]
util = { git = "https://github.com/webrtc-rs/util", branch = "main" }
rtp = { git = "https://github.com/webrtc-rs/rtp", branch = "main" }
rtcp = { git = "https://github.com/webrtc-rs/rtcp", branch = "main" }
util = { package = "webrtc-rs-util", version = "0.1.0" }
rtp = { package = "webrtc-rs-rtp", version = "0.1.0" }
rtcp = { package = "webrtc-rs-rtcp", version = "0.1.0" }
byteorder = "1.3.2"
hmac = "0.10.1"
sha-1 = "0.9.1"
Expand Down

0 comments on commit 425dc59

Please sign in to comment.