[package] name = "qwal" authors = ["The Tremor Team"] version = "0.1.0" edition = "2021" license = "Apache-2.0" description = "A disk baced Write Ahead Log that can functuin as a FIFO queue" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] tokio = { version = "1", features = [ "fs", "io-util", "macros", "rt-multi-thread", ], optional = true } async-std = { version = "1", features = ["attributes"], optional = true } byteorder = "1" [dev-dependencies] tempfile = "3" [features] default = ["tokio"] tokio = ["dep:tokio"] async-std = ["dep:async-std"]