xstm 0.1.0

A Rust-implemented Software Transactional Memory (STM) library using TL2 (Transactional Locking II) algorithm
Documentation
[[bench]]
harness = false
name = "basic"
path = "benches/basic.rs"

[[bench]]
harness = false
name = "fib"
path = "benches/fib.rs"

[[bench]]
harness = false
name = "vec"
path = "benches/vec.rs"

[dependencies.smallvec]
optional = true
version = "1.13.2"

[dev-dependencies.divan]
version = "0.1"

[dev-dependencies.tokio]
features = ["full"]
version = "1.41"

[features]
retry_info = []
small_alloc = ["dep:smallvec"]

[lib]
name = "xstm"
path = "src/lib.rs"

[package]
authors = ["xstater"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["concurrency"]
description = "A Rust-implemented Software Transactional Memory (STM) library using TL2 (Transactional Locking II) algorithm"
edition = "2021"
keywords = ["stm", "tl2", "concurrency"]
license = "MIT"
name = "xstm"
readme = "ReadMe.md"
repository = "https://github.com/xstater/xstm"
version = "0.1.0"

[profile.bench]
debug = 2
inherits = "release"

[[test]]
name = "big_array"
path = "tests/big_array.rs"

[[test]]
name = "fib"
path = "tests/fib.rs"

[[test]]
name = "vec"
path = "tests/vec.rs"