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

View File

@@ -67,7 +67,7 @@ fn main() -> Result<(), Error> {
},
NumberOrString::Str(str) => {
// For --info and --get, try to parse strings as numbers to treat them as IDs
if (args.mode.info || args.mode.get) {
if args.mode.info || args.mode.get {
if let Ok(num) = str.parse::<i64>() {
debug!("MAIN: Adding parsed string to ids: {}", num);
ids.push(num);