From a584ffa55de3be57abb75258089856aac2c17a17 Mon Sep 17 00:00:00 2001 From: Konstantin Baltruschat Date: Wed, 27 Nov 2024 15:22:28 +0100 Subject: [PATCH] sip-core: release 0.4.1 also declare all packages in this workspace as workspace dependencies --- Cargo.toml | 11 +++++++++++ crates/sdp-types/Cargo.toml | 2 +- crates/sip-auth/Cargo.toml | 2 +- crates/sip-core/Cargo.toml | 10 +++++----- crates/sip-types/Cargo.toml | 2 +- crates/sip-ua/Cargo.toml | 4 ++-- crates/stun-types/Cargo.toml | 3 +-- crates/stun/Cargo.toml | 4 +--- 8 files changed, 23 insertions(+), 15 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6b1862d..48a57ed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,3 +11,14 @@ authors = ["kbalt"] edition = "2021" license = "MIT" repository = "https://github.com/kbalt/ezk" + +[workspace.dependencies] +internal = { package = "ezk-internal", version = "0.2.0", path = "crates/internal" } +sip-types = { package = "ezk-sip-types", version = "0.3.0", path = "crates/sip-types" } +sip-core = { package = "ezk-sip-core", version = "0.4.1", path = "crates/sip-core" } +sip-ua = { package = "ezk-sip-ua", version = "0.4.4", path = "crates/sip-core" } + +sdp-types = { package = "ezk-sdp-types", version = "0.4.0", path = "crates/sdp-types" } + +stun-types = { package = "ezk-stun-types", version = "0.1.2", path = "crates/stun-types" } +stun = { package = "ezk-stun", version = "0.2.0", path = "crates/stun" } \ No newline at end of file diff --git a/crates/sdp-types/Cargo.toml b/crates/sdp-types/Cargo.toml index 2d566cb..01fb3ad 100644 --- a/crates/sdp-types/Cargo.toml +++ b/crates/sdp-types/Cargo.toml @@ -12,7 +12,7 @@ license.workspace = true repository.workspace = true [dependencies] -internal = { package = "ezk-internal", path = "../internal", version = "0.2" } +internal.workspace = true bytesstr = "1" nom = { version = "7", default-features = false, features = ["alloc"] } diff --git a/crates/sip-auth/Cargo.toml b/crates/sip-auth/Cargo.toml index b0c7466..d82ab38 100644 --- a/crates/sip-auth/Cargo.toml +++ b/crates/sip-auth/Cargo.toml @@ -12,7 +12,7 @@ license.workspace = true repository.workspace = true [dependencies] -sip-types = { package = "ezk-sip-types", path = "../sip-types", version = "0.3" } +sip-types.workspace = true bytesstr = "1" md5 = "0.7" diff --git a/crates/sip-core/Cargo.toml b/crates/sip-core/Cargo.toml index 90ed7a5..2d59b33 100644 --- a/crates/sip-core/Cargo.toml +++ b/crates/sip-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ezk-sip-core" -version = "0.4.0" +version = "0.4.1" description = "SIP core crate providing abstrations over transport and transactions" categories = ["network-programming", "multimedia"] keywords = ["sip"] @@ -12,10 +12,10 @@ license.workspace = true repository.workspace = true [dependencies] -internal = { package = "ezk-internal", path = "../internal", version = "0.2" } -sip-types = { package = "ezk-sip-types", path = "../sip-types", version = "0.3" } -stun-types = { package = "ezk-stun-types", path = "../stun-types", version = "0.1.1" } -stun = { package = "ezk-stun", path = "../stun", version = "0.2.0" } +internal.workspace = true +sip-types.workspace = true +stun-types.workspace = true +stun.workspace = true tracing = "0.1" bytes = "1" diff --git a/crates/sip-types/Cargo.toml b/crates/sip-types/Cargo.toml index 9f9f2f2..7f85a1b 100644 --- a/crates/sip-types/Cargo.toml +++ b/crates/sip-types/Cargo.toml @@ -12,7 +12,7 @@ license.workspace = true repository.workspace = true [dependencies] -internal = { package = "ezk-internal", path = "../internal", version = "0.2" } +internal.workspace = true bytesstr = "1" downcast-rs = "1.2.0" diff --git a/crates/sip-ua/Cargo.toml b/crates/sip-ua/Cargo.toml index 23480ee..57e73bb 100644 --- a/crates/sip-ua/Cargo.toml +++ b/crates/sip-ua/Cargo.toml @@ -12,8 +12,8 @@ license.workspace = true repository.workspace = true [dependencies] -sip-types = { package = "ezk-sip-types", path = "../sip-types", version = "0.3" } -sip-core = { package = "ezk-sip-core", path = "../sip-core", version = "0.4" } +sip-types.workspace = true +sip-core.workspace = true log = "0.4" bytesstr = "1" diff --git a/crates/stun-types/Cargo.toml b/crates/stun-types/Cargo.toml index c99fd33..fceaf03 100644 --- a/crates/stun-types/Cargo.toml +++ b/crates/stun-types/Cargo.toml @@ -6,7 +6,6 @@ categories = ["network-programming"] keywords = ["stun", "turn"] readme = "README.md" - authors.workspace = true edition.workspace = true license.workspace = true @@ -18,7 +17,7 @@ rand = "0.8" bitfield = "0.15" bytes = "1" hmac = "0.12" -sha-1 = "0.10" +sha1 = "0.10" sha2 = "0.10" thiserror = "1" md5 = "0.7" diff --git a/crates/stun/Cargo.toml b/crates/stun/Cargo.toml index 1cd4179..7c90104 100644 --- a/crates/stun/Cargo.toml +++ b/crates/stun/Cargo.toml @@ -12,11 +12,9 @@ license.workspace = true repository.workspace = true [dependencies] -stun-types = { path = "../stun-types", package = "ezk-stun-types", version = "0.1.1" } +stun-types.workspace = true tokio = { version = "1", features = ["time", "sync"] } -bytes = "1" -hmac = "0.12" parking_lot = "0.12" async-trait = "0.1" thiserror = "1"