-
Notifications
You must be signed in to change notification settings - Fork 21
/
Cargo.toml
54 lines (47 loc) · 1.65 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
49
50
51
52
53
54
[package]
name = "datacake"
version = "0.8.0"
edition = "2021"
description = "A batteries included framework for building fault-tolerance distributed data systems."
license = "MIT"
keywords = ["crdt", "databases", "distributed", "tokio", "async"]
categories = ["concurrency", "data-structures", "asynchronous"]
repository = "https://github.com/lnx-search/datacake"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
datacake-crdt = { version = "0.5", path = "datacake-crdt", optional = true }
datacake-eventual-consistency = { version = "0.6", path = "datacake-eventual-consistency", optional = true }
datacake-sqlite = { version = "0.5", path = "datacake-sqlite", optional = true }
datacake-rpc = { version = "0.6", path = "datacake-rpc", optional = true }
datacake-node = { version = "0.5", path = "datacake-node", optional = true }
datacake-lmdb = { version = "0.3", path = "datacake-lmdb", optional = true }
[dev-dependencies]
tokio = { version = "1", features = ["rt"] }
anyhow = "1"
[features]
test-utils = ["datacake-eventual-consistency/test-utils"]
rkyv = ["datacake-crdt/rkyv-support"]
rkyv-validation = ["rkyv", "datacake-crdt/rkyv-validation"]
simulation = ["datacake-rpc/simulation"]
default = [
"datacake-crdt",
"datacake-rpc",
"datacake-eventual-consistency",
"datacake-node",
]
[workspace]
members = [
"datacake-node",
"datacake-eventual-consistency",
"datacake-crdt",
"datacake-sqlite",
"datacake-rpc",
"datacake-lmdb",
# Utils
"test-helper",
"benchmarks",
"simulation-tests",
# Example set
"examples/replicated-kv",
]