feat: add ringbuf and crossbeam-utils dependencies

This commit is contained in:
Andrew Phillips
2025-08-29 13:35:55 -03:00
committed by Andrew Phillips (aider)
parent b58d0a2df5
commit 196fdbbda8
3 changed files with 17 additions and 5 deletions

16
Cargo.lock generated
View File

@@ -477,6 +477,12 @@ dependencies = [
"cfg-if",
]
[[package]]
name = "crossbeam-utils"
version = "0.8.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
[[package]]
name = "crunchy"
version = "0.2.4"
@@ -1386,6 +1392,7 @@ dependencies = [
"pwhash",
"rand",
"regex",
"ringbuf",
"rmcp",
"rusqlite",
"rusqlite_migration",
@@ -1980,6 +1987,15 @@ version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
[[package]]
name = "ringbuf"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "79abed428d1fd2a128201cec72c5f6938e2da607c6f3745f769fabea399d950a"
dependencies = [
"crossbeam-utils",
]
[[package]]
name = "rmcp"
version = "0.2.1"