[package]
edition = "2021"
name = "raft-client"
version = "0.1.2"
authors = ["Louis-Philip Marcoux"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Client library for the raft distributed KV store with automatic leader tracking and exponential backoff"
readme = "README.md"
license = "MIT"
repository = "https://github.com/louisphilipmarcoux/raft"
[lib]
name = "raft_client"
path = "src/lib.rs"
[dependencies.prost]
version = "0.13"
[dependencies.raft-common]
version = "0.1.2"
[dependencies.rand]
version = "0.8"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tonic]
version = "0.12"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"test-util",
]
[build-dependencies.tonic-build]
version = "0.12"