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 /rtp | |
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 'rtp')
-rw-r--r-- | rtp/Cargo.toml | 6 | ||||
-rw-r--r-- | rtp/src/lib.rs | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/rtp/Cargo.toml b/rtp/Cargo.toml new file mode 100644 index 0000000..07e7123 --- /dev/null +++ b/rtp/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "rtp" +version = "0.1.0" +edition = "2021" + +[dependencies] diff --git a/rtp/src/lib.rs b/rtp/src/lib.rs new file mode 100644 index 0000000..b28b04f --- /dev/null +++ b/rtp/src/lib.rs @@ -0,0 +1,3 @@ + + + |