generated from al8n/crates
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
46 lines (41 loc) · 1.42 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
[workspace]
members = [
"txn-core",
"txn",
"async-txn",
"wmark",
"skipdb",
"async-skipdb",
"skipdb-core",
]
resolver = "2"
[workspace.package]
version = "0.1.4"
edition = "2021"
rust-version = "1.75.0"
repository = "https://github.com/al8n/skipdb"
homepage = "https://github.com/al8n/skipdb"
categories = ["asynchronous", "data-structures", "concurrency", "database-implementations", "development-tools"]
keywords = ["ssi", "transaction", "database", "optimistic", "mvcc"]
license = "MIT OR Apache-2.0"
[workspace.dependencies]
async-channel = "2"
cheap-clone = "0.1"
crossbeam-channel = { version = "0.5", default-features = false }
crossbeam-utils = { version = "0.8", default-features = false }
either = "1"
indexmap = { version = "2", default-features = false }
parking_lot = "0.12"
rand = "0.8"
smallvec-wrapper = { version = "0.1", default-features = false, features = ["const_new"] }
scopeguard = { version = "1", default-features = false }
thiserror = "1"
tracing = "0.1"
wmark = { path = "wmark", version = "0.1", default-features = false }
txn-core = { path = "txn-core", version = "0.1", default-features = false }
txn = { path = "txn", version = "0.1", default-features = false }
async-txn = { path = "async-txn", version = "0.1", default-features = false }
skipdb-core = { path = "skipdb-core", version = "0.2", default-features = false }
[workspace.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]