-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
40 lines (37 loc) · 1.04 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
[workspace]
resolver = "2"
members = [
"raftify",
"harness",
"examples",
"examples/memstore",
"examples/memstore/dynamic-members",
"examples/memstore/static-members",
]
default-members = [
"raftify",
"harness",
"examples",
"examples/memstore",
"examples/memstore/dynamic-members",
"examples/memstore/static-members",
]
exclude = ["raft-rs", "raftify-cli"]
[workspace.package]
version = "0.1.82"
authors = ["Lablup Inc."]
edition = "2021"
description = "Experimental High level Raft framework"
license = "MIT/Apache-2.0"
repository = "https://github.com/lablup/raftify"
keywords = ["raft", "distributed-systems", "ha"]
categories = ["distributed-systems", "database-implementations"]
homepage = "https://github.com/lablup/raftify"
[workspace.dependencies]
raftify = { path = "raftify" }
example-harness = { path = "examples" }
memstore-example-harness = { path = "examples/memstore" }
[patch.crates-io]
jopemachine-raft = { path = "./raft-rs" }
raftify = { path = "./raftify" }
raftify_cli = { path = "./raftify-cli" }