diff options
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" |