-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (32 loc) · 1.01 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
[package]
name = "rraft-py"
version = "0.2.27"
authors = ["Lablup Inc."]
license = "Apache-2.0"
repository = "https://github.com/lablup/rraft-py"
readme = "./README.md"
homepage = "https://github.com/lablup/rraft-py"
description = """
Unofficial Python Binding of the tikv/raft-rs
"""
keywords = ["raft", "distributed-systems", "consensus-algorithm", "replication", "distributed-database"]
categories = ["distributed-systems", "database-implementations"]
edition = "2021"
[dependencies]
prost = "0.11"
protobuf = "2"
pyo3 = { version = "0.20.0", features = ["extension-module", "multiple-pymethods"] }
raft = { git = "https://github.com/jopemachine/raft-rs.git", features = ["prost-codec", "default-logger"], default-features = false }
slog = { version = "2.2", features = ["max_level_trace", "release_max_level_trace"] }
slog-envlogger = "2.1.0"
slog-term = "2.9.0"
slog-stdlog = "4"
slog-async = "2.7.0"
sloggers = "2.1.2"
fxhash = "0.2.1"
bincode = "1.3.3"
bytes = "1.0"
once_cell = "1.7"
[lib]
name = "rraft"
crate-type = ["cdylib"]