[package] name = "conveyor_belt" description = "Queue and batch processing library" repository = "https://github.com/markhaehnel/conveyor_belt" version = "0.2.0" edition = "2021" license = "MIT OR Apache-2.0" authors = ["Mark Hähnel "] keywords = ["queue", "batch", "processing", "redis", "message-queue"] categories = ["concurrency", "asynchronous"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = { version = "1.0.75" } parking_lot = "0.12.1" tokio = { version = "1.32.0", features = ["full"] } # See more at https://github.com/johnthagen/min-sized-rust [profile.release] #codegen-units = 1 lto = true opt-level = "s" strip = true [lib] crate-type = ["rlib"]