# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "bpcon" version = "0.1.0" authors = ["Distributed Lab"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "BPCon: A Byzantine Fault-Tolerant Consensus Protocol Implementation in Rust." homepage = "https://github.com/distributed-lab/bpcon#readme" documentation = "https://distributed-lab.github.io/bpcon/" readme = "README.md" keywords = [ "consensus", "byzantine", "protocol", "distributed-systems", "blockchain", ] categories = ["algorithms"] license = "MIT" repository = "https://github.com/distributed-lab/bpcon" [lib] name = "bpcon" path = "src/lib.rs" [[test]] name = "mod" path = "tests/mod.rs" required-features = ["test-mocks"] [dependencies.bincode] version = "^1.3.3" [dependencies.log] version = "^0.4.22" [dependencies.rand] version = "^0.9.0-alpha.2" [dependencies.rand_chacha] version = "0.3.1" [dependencies.rkyv] version = "^0.7.44" features = ["validation"] [dependencies.serde] version = "^1.0.207" features = ["derive"] [dependencies.thiserror] version = "^1.0.63" [dependencies.tokio] version = "^1.39.2" features = ["full"] [dev-dependencies.futures] version = "0.3.30" [dev-dependencies.tokio] version = "^1.39.2" features = ["test-util"] [features] default = [ "tokio/full", "rkyv/validation", ] test-mocks = []