5 Commits
v0.0.6 ... main

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
8647d571ba 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:39:24 +01:00
4 changed files with 23 additions and 13 deletions

View File

@@ -6,6 +6,16 @@ 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
- update mad
## [0.0.6] - 2025-11-13
### Added

22
Cargo.lock generated
View File

@@ -27,9 +27,9 @@ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
[[package]]
name = "bytes"
version = "1.10.1"
version = "1.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
[[package]]
name = "cfg-if"
@@ -39,7 +39,7 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
[[package]]
name = "drop-queue"
version = "0.0.4"
version = "0.0.8"
dependencies = [
"anyhow",
"async-trait",
@@ -190,9 +190,9 @@ dependencies = [
[[package]]
name = "notmad"
version = "0.8.1"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6698b96b4bf8b4bb35982cc8233af557954cf3b3c2749cec819fab39acc29e6"
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.6"
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.8.1", optional = true }
notmad = { version = "0.10.0", optional = true }
tokio-util = { version = "0.7", optional = true }
[features]