[package]
name = "slice-ring-buffer"
version = "0.3.4"
authors = ["Linus Probert <linus.probert@gmail.com>"]
description = "A double-ended queue that Deref's into a slice."
documentation = "https://docs.rs/crate/slice-ring-buffer/"
homepage = "https://github.com/liquidityc/slice_ring_buffer"
repository = "https://github.com/liquidityc/slice_ring_buffer"
readme = "README.md"
keywords = ["collection", "deque", "ring", "circular", "buffer"]
categories = ["data-structures", "no-std"]
license = "MIT/Apache-2.0"
edition = "2018"
[badges]
maintenance = { status = "passively-maintained" }
[target.'cfg(all(any(target_os = "macos", target_os = "ios"), not(feature = "unix_sysv")))'.dependencies.mach2]
version = "0.4.1"
default-features = false
[target.'cfg(target_os = "windows")'.dependencies.winapi]
version = "0.3.*"
features = ["memoryapi", "handleapi", "sysinfoapi", "winbase"]
default-features = false
[features]
default = [ "use_std" ]
use_std = [ "libc/use_std" ]
unix_sysv = []
[target.'cfg(any(unix, target_os = "dragonfly"))'.dependencies.libc]
version = "0.2"
default-features = false
[profile.dev]
opt-level = 0
debug = true
lto = false
debug-assertions = true
codegen-units = 4
incremental = true
panic = 'unwind'
[profile.bench]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1