Skip to content

Commit

Permalink
sip-core: release 0.4.1
Browse files Browse the repository at this point in the history
also declare all packages in this workspace as workspace dependencies
  • Loading branch information
kbalt committed Nov 27, 2024
1 parent d144987 commit a584ffa
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 15 deletions.
11 changes: 11 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
2 changes: 1 addition & 1 deletion crates/sdp-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/sip-auth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
10 changes: 5 additions & 5 deletions crates/sip-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion crates/sip-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions crates/sip-ua/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 1 addition & 2 deletions crates/stun-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ categories = ["network-programming"]
keywords = ["stun", "turn"]
readme = "README.md"


authors.workspace = true
edition.workspace = true
license.workspace = true
Expand All @@ -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"
4 changes: 1 addition & 3 deletions crates/stun/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit a584ffa

Please sign in to comment.