generated from al8n/template-rs
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
27 lines (23 loc) · 846 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "objectpool"
version = "0.1.0"
edition = "2021"
repository = "https://github.com/al8n/objectpool"
homepage = "https://github.com/al8n/objectpool"
documentation = "https://docs.rs/objectpool"
description = "Yet another lock-free object pool, support no_std"
license = "MIT OR Apache-2.0"
rust-version = "1.56"
keywords = ["atomic", "object-pool", "lockfree-object-pool", "non-blocking", "lock-free"]
categories = ["concurrency", "memory-management", "data-structures", "development-tools", "no-std"]
exclude = ["benchmark"]
[features]
default = ["std"]
alloc = ["crossbeam-queue/alloc"]
std = ["crossbeam-queue/default"]
[dependencies]
crossbeam-queue = { version = "0.3", default-features = false }
loom = { version = "0.7", optional = true }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]