[package]
edition = "2024"
name = "raft-log"
version = "0.2.13"
authors = ["Zhang Yanpo <drdr.xp@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Raft log implementation"
homepage = "https://github.com/drmingdrmer/raft-log"
documentation = "https://docs.rs/raft-log"
readme = "README.md"
keywords = [
"raft",
"log",
]
categories = [
"algorithms",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/drmingdrmer/raft-log"
[lib]
name = "raft_log"
path = "src/lib.rs"
[[bin]]
name = "raft-log-bench"
path = "src/bin/bench.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[test]]
name = "test_compat"
path = "tests/test_compat.rs"
[[test]]
name = "test_massive"
path = "tests/test_massive.rs"
[[test]]
name = "test_rmp_serde"
path = "tests/test_rmp_serde.rs"
[dependencies.byteorder]
version = "1.5.0"
[dependencies.codeq]
version = "0.5.1"
[dependencies.display-more]
version = "0.2.1"
[dependencies.fs2]
version = "0.4.3"
[dependencies.log]
version = "0.4.22"
[dependencies.thiserror]
version = "1.0.64"
[dev-dependencies.goldenfile]
version = "1.8.0"
[dev-dependencies.indoc]
version = "2"
[dev-dependencies.pretty_assertions]
version = "1.4.1"
[dev-dependencies.rand]
version = "0.9.0"
[dev-dependencies.rmp-serde]
version = "1"
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.tempfile]
version = "3.4.0"