-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
36 lines (29 loc) · 922 Bytes
/
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
[package]
name = "simple-raft"
version = "0.2.0"
edition = "2018"
description = "A minimal implementation of the Raft consensus algorithm"
license = "AGPL-3.0-or-later"
repository = "https://github.com/simple-raft-rs/raft-rs"
categories = ["database-implementations", "no-std"]
keywords = ["raft", "no_std"]
exclude = [".github/"]
[features]
default = ["prost"]
[dependencies]
bytes = { version = "1.0", default-features = false, features = [] }
log = "0.4"
prost = { version = "0.7", default-features = false, features = ["prost-derive"], optional = true }
rand_core = { version = "0.6", default-features = false, features = [] }
[dev-dependencies]
derive_more = "0.99"
env_logger = { version = "0.8", default_features = false, features = [] }
itertools = "0.10"
rand = "0.8"
rand_chacha = "0.3"
[[example]]
name = "simple"
test = true
[[example]]
name = "threaded"
test = true