diff options
author | metamuffin <metamuffin@disroot.org> | 2024-07-06 22:43:09 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-07-06 22:43:09 +0200 |
commit | 5f1a995ac4d0965135a297d3c2cb8c2712765e2c (patch) | |
tree | 7a7a61abc59a4c981aab723063803a8fae568ff3 /Cargo.lock | |
parent | c2691822809085712a97521a412c1365fedcccda (diff) | |
download | sip-rs-5f1a995ac4d0965135a297d3c2cb8c2712765e2c.tar sip-rs-5f1a995ac4d0965135a297d3c2cb8c2712765e2c.tar.bz2 sip-rs-5f1a995ac4d0965135a297d3c2cb8c2712765e2c.tar.zst |
sdp and rtp crates
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -398,6 +398,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" [[package]] +name = "rtp" +version = "0.1.0" + +[[package]] name = "rustc-demangle" version = "0.1.24" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -410,6 +414,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] +name = "sdp" +version = "0.1.0" +dependencies = [ + "anyhow", +] + +[[package]] name = "signal-hook-registry" version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -429,6 +440,8 @@ dependencies = [ "log", "md5", "rand", + "rtp", + "sdp", "tokio", ] |