aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-11-19 02:08:52 +0100
committermetamuffin <metamuffin@disroot.org>2024-11-19 02:08:52 +0100
commitcbc111f90b5facc1f2a9dd79ced216279d6260af (patch)
treefa5a1d2d67874413d8e66673825c6789e8cc0945 /Cargo.toml
parent2d9a31244eab6d3a9871369d3148de253e902d36 (diff)
downloadsip-rs-cbc111f90b5facc1f2a9dd79ced216279d6260af.tar
sip-rs-cbc111f90b5facc1f2a9dd79ced216279d6260af.tar.bz2
sip-rs-cbc111f90b5facc1f2a9dd79ced216279d6260af.tar.zst
move files + rtp parser
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml20
1 files changed, 4 insertions, 16 deletions
diff --git a/Cargo.toml b/Cargo.toml
index be4a965..ece77f5 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,19 +1,7 @@
-[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"
+[workspace]
+resolver = "2"
+members = ["rtp", "sdp", "sip"]
+[workspace.dependencies]
sdp = { path = "sdp" }
rtp = { path = "rtp" }
-
-[dev-dependencies]
-env_logger = "0.11.3"