4 Commits

Author SHA1 Message Date
b56646d529 chore(deps): update rust crate tracing to v0.1.43
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2025-11-29 01:30:19 +00:00
ea3aeac30c chore(release): v0.0.8 (#10)
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
chore(release): 0.0.8

Co-authored-by: cuddle-please <bot@cuddle.sh>
Reviewed-on: #10
2025-11-15 14:50:25 +01:00
1301daf7fb chore: update mad
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: kjuulh <contact@kjuulh.io>
2025-11-15 14:49:38 +01:00
f54c4d4c2c chore(release): v0.0.7 (#9)
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
chore(release): 0.0.7

Co-authored-by: cuddle-please <bot@cuddle.sh>
Reviewed-on: #9
2025-11-15 14:39:58 +01:00
4 changed files with 16 additions and 11 deletions

View File

@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.0.8] - 2025-11-15
### Other
- update mad
## [0.0.7] - 2025-11-15
### Other

18
Cargo.lock generated
View File

@@ -39,7 +39,7 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
[[package]]
name = "drop-queue"
version = "0.0.6"
version = "0.0.8"
dependencies = [
"anyhow",
"async-trait",
@@ -190,9 +190,9 @@ dependencies = [
[[package]]
name = "notmad"
version = "0.9.0"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f5a9932a24add54a4bf90f5d87909b536ad374e6be6ae48c7aa522a5f40ba24"
checksum = "8928d07eb95b8c403b43821dd5aa71344d7d4206dc0c117ced35707942509ef9"
dependencies = [
"anyhow",
"async-trait",
@@ -428,9 +428,9 @@ dependencies = [
[[package]]
name = "tracing"
version = "0.1.41"
version = "0.1.43"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
checksum = "2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647"
dependencies = [
"log",
"pin-project-lite",
@@ -440,9 +440,9 @@ dependencies = [
[[package]]
name = "tracing-attributes"
version = "0.1.30"
version = "0.1.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
dependencies = [
"proc-macro2",
"quote",
@@ -451,9 +451,9 @@ dependencies = [
[[package]]
name = "tracing-core"
version = "0.1.34"
version = "0.1.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
checksum = "7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c"
dependencies = [
"once_cell",
]

View File

@@ -3,7 +3,7 @@ members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "0.0.7"
version = "0.0.8"
[workspace.dependencies]
drop-queue = { path = "crates/drop-queue" }

View File

@@ -16,7 +16,7 @@ tracing.workspace = true
async-trait = { version = "0.1" }
notmad = { version = "0.9.0", optional = true }
notmad = { version = "0.10.0", optional = true }
tokio-util = { version = "0.7", optional = true }
[features]