aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig23
1 files changed, 19 insertions, 4 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index 5b3d627..a43d3b9 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,18 +1,29 @@
[package]
name = "sharded-slab"
-version = "0.1.4"
+version = "0.1.7"
authors = ["Eliza Weisman <eliza@buoyant.io>"]
edition = "2018"
-documentation = "https://docs.rs/sharded-slab/0.1.4/sharded_slab"
+documentation = "https://docs.rs/sharded-slab/"
homepage = "https://github.com/hawkw/sharded-slab"
repository = "https://github.com/hawkw/sharded-slab"
readme = "README.md"
+rust-version = "1.42.0"
license = "MIT"
keywords = ["slab", "allocator", "lock-free", "atomic"]
categories = ["memory-management", "data-structures", "concurrency"]
description = """
A lock-free concurrent slab.
"""
+ignore = [
+ "flake.nix",
+ "flake.lock",
+ ".envrc",
+ ".clog.toml",
+ ".cargo",
+ ".github",
+ ".direnv",
+ "bin",
+]
[badges]
maintenance = { status = "experimental" }
@@ -25,14 +36,18 @@ harness = false
lazy_static = "1"
[dev-dependencies]
-loom = { version = "0.5", features = ["checkpoint"] }
proptest = "1"
criterion = "0.3"
slab = "0.4.2"
+memory-stats = "1"
+indexmap = "1" # newer versions lead to "candidate versions found which didn't match" on 1.42.0
[target.'cfg(loom)'.dependencies]
loom = { version = "0.5", features = ["checkpoint"], optional = true }
+[target.'cfg(loom)'.dev-dependencies]
+loom = { version = "0.5", features = ["checkpoint"] }
+
[package.metadata.docs.rs]
all-features = true
-rustdoc-args = ["--cfg", "docsrs"] \ No newline at end of file
+rustdoc-args = ["--cfg", "docsrs"]