generated from al8n/crates
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
48 lines (41 loc) · 1.36 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "async-skipdb"
version = "0.2.1"
rust-version.workspace = true
edition.workspace = true
repository.workspace = true
homepage.workspace = true
documentation = "https://docs.rs/async-skipdb"
description = "An embedded, in-memory, zero-copy, atomicity, consistency, MVCC, almost lock-free and serializable snapshot isolation database engine."
license.workspace = true
keywords = ["database", "key-value-store", "memdb", "embedded-database", "memodb"]
categories = ["database-implementations", "concurrency", "data-structures", "asynchronous"]
[features]
default = []
tokio = ["async-txn/tokio"]
smol = ["async-txn/smol"]
async-std = ["async-txn/async-std"]
wasm = ["async-txn/wasm"]
[dependencies]
cheap-clone = { workspace = true, features = ["std"] }
async-txn = { workspace = true, features = ["default"] }
skipdb-core = { workspace = true, features = ["default"] }
[dev-dependencies]
futures = "0.3"
rand = "0.8"
scopeguard = "1"
wmark = { workspace = true, features = ["future"] }
tokio = { version = "1", features = ["full"] }
async-std = { version = "1", features = ["attributes"] }
smol = "2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[[example]]
name = "optimistic"
path = "examples/optimistic.rs"
required-features = ["tokio"]
[[example]]
name = "serializable"
path = "examples/serializable.rs"
required-features = ["tokio"]