[package]
edition = "2021"
rust-version = "1.66"
name = "fastskip"
version = "0.1.0"
authors = ["Ashutosh Kumar <kumarashutosh34169@gmail.com>"]
build = false
exclude = [
".github/",
".gitignore",
"USAGE.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lock-free arena-backed skip list memtable for LSM-tree storage engines"
homepage = "https://github.com/themankindproject/fastskip"
documentation = "https://docs.rs/fastskip"
readme = "README.md"
keywords = [
"skiplist",
"lock-free",
"memtable",
"lsm",
"concurrent",
]
categories = [
"concurrency",
"data-structures",
"memory-management",
]
license = "MIT"
repository = "https://github.com/themankindproject/fastskip"
[lib]
name = "fastskip"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "concurrent_writers"
path = "examples/concurrent_writers.rs"
[[example]]
name = "lsm_memtable"
path = "examples/lsm_memtable.rs"
[[example]]
name = "snapshot"
path = "examples/snapshot.rs"
[[test]]
name = "concurrent"
path = "tests/concurrent.rs"
[[test]]
name = "correctness"
path = "tests/correctness.rs"
[[test]]
name = "iterator"
path = "tests/iterator.rs"
[[test]]
name = "loom"
path = "tests/loom.rs"
[[test]]
name = "stress"
path = "tests/stress.rs"
[[test]]
name = "tombstone"
path = "tests/tombstone.rs"
[[bench]]
name = "skiplist_bench"
path = "benches/skiplist_bench.rs"
harness = false
[dependencies.fastarena]
version = "0.1.3"
[dev-dependencies.criterion]
version = "0.8.2"
features = ["html_reports"]
[dev-dependencies.loom]
version = "0.7"
[dev-dependencies.rand]
version = "0.8"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(loom)"]