[dependencies.async-channel]
default-features = false
optional = true
version = "2"
[dependencies.async-std]
optional = true
version = "1"
[dependencies.crossbeam-channel]
optional = true
version = "0.5"
[dependencies.crossbeam-queue]
default-features = false
optional = true
version = "0.3"
[dependencies.crossbeam-utils]
default-features = false
version = "0.8"
[dependencies.futures-util]
default-features = false
features = ["async-await-macro"]
optional = true
version = "=0.3.29"
[dependencies.hashbrown]
default-features = false
optional = true
version = "0.14"
[dependencies.parking_lot]
optional = true
version = "0.12"
[dependencies.scopeguard]
default-features = false
version = "1"
[dependencies.smallvec-wrapper]
features = ["const_new"]
version = "0.1"
[dependencies.smol]
optional = true
version = "2"
[dependencies.thiserror]
optional = true
version = "1"
[dependencies.tokio]
default-features = false
features = ["rt", "sync", "macros"]
optional = true
version = "1"
[dependencies.tracing]
default-features = false
optional = true
version = "0.1"
[dependencies.wg]
optional = true
version = "0.8"
[dev-dependencies.tokio]
features = ["full"]
version = "1"
[features]
async-std = ["dep:async-std", "wg/async-std", "future"]
core = ["crossbeam-queue/alloc", "hashbrown/allocator-api2"]
default = ["std"]
future = ["wg/future", "async-channel", "futures-util"]
smol = ["dep:smol", "wg/smol", "future"]
std = ["parking_lot", "wg", "crossbeam-channel", "async-channel?/default", "thiserror", "crossbeam-utils/default", "scopeguard/use_std"]
tokio = ["dep:tokio", "wg/tokio", "futures-util"]
[package]
description = "Helpful structs to implement optimistic SSI (Serializable Snapshot Isolation) level transactions for database"
edition = "2021"
homepage = "https://github.com/al8n/txn"
license = "Apache-2.0/MIT"
name = "wmark"
repository = "https://github.com/al8n/txn"
version = "0.1.0"