diff options
author | metamuffin <metamuffin@disroot.org> | 2024-11-19 02:08:52 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-11-19 02:08:52 +0100 |
commit | cbc111f90b5facc1f2a9dd79ced216279d6260af (patch) | |
tree | fa5a1d2d67874413d8e66673825c6789e8cc0945 /sip/Cargo.toml | |
parent | 2d9a31244eab6d3a9871369d3148de253e902d36 (diff) | |
download | sip-rs-cbc111f90b5facc1f2a9dd79ced216279d6260af.tar sip-rs-cbc111f90b5facc1f2a9dd79ced216279d6260af.tar.bz2 sip-rs-cbc111f90b5facc1f2a9dd79ced216279d6260af.tar.zst |
move files + rtp parser
Diffstat (limited to 'sip/Cargo.toml')
-rw-r--r-- | sip/Cargo.toml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sip/Cargo.toml b/sip/Cargo.toml new file mode 100644 index 0000000..c91634b --- /dev/null +++ b/sip/Cargo.toml @@ -0,0 +1,19 @@ +[package] +name = "sip" +version = "0.1.0" +edition = "2021" + +[dependencies] +tokio = { version = "1.38.0", features = ["full"] } +anyhow = "1.0.86" +log = "0.4.22" +rand = "0.9.0-alpha.1" +base64 = "0.22.1" +md5 = "0.7.0" +hex = "0.4.3" + +sdp = { workspace = true } +rtp = { workspace = true } + +[dev-dependencies] +env_logger = "0.11.3" |