-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
30 lines (26 loc) · 882 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
[package]
name = "one-file-raft"
version = "0.1.1"
edition = "2021"
readme = "README.md"
authors = [
"Zhang Yanpo <[email protected]>",
]
categories = ["algorithms", "asynchronous", "data-structures"]
description = "Raft consensus in 300 LOC"
documentation = "https://docs.rs/one-file-raft"
homepage = "https://github.com/drmingdrmer/one-file-raft"
keywords = ["raft", "consensus"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/drmingdrmer/one-file-raft"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.76"
derivative = "2.2.0"
derive-new = "0.6.0"
derive_more = "0.99.17"
itertools = "0.12.0"
log = "0.4.20"
tokio = { version="1.8", default-features=false, features=["fs", "io-util", "macros", "rt", "rt-multi-thread", "sync", "time"] }
[dev-dependencies]
env_logger = "0.10.2"