URI: 
       tCargo.toml - sraft - simple raft implementation
  HTML git clone https://git.parazyd.org/sraft
   DIR Log
   DIR Files
   DIR Refs
   DIR README
       ---
       tCargo.toml (409B)
       ---
            1 [package]
            2 name = "sraft"
            3 version = "0.1.0"
            4 edition = "2021"
            5 
            6 [dependencies]
            7 async-channel = "1.6.1"
            8 async-std = {version = "1.11.0", features = ["attributes"]}
            9 borsh = "0.9.3"
           10 futures = "0.3.21"
           11 lazy_static = "1.4.0"
           12 log = "0.4.16"
           13 rand = "0.8.5"
           14 
           15 [dev-dependencies]
           16 async-executor = "1.4.1"
           17 clap = {version = "3.1.6", features = ["derive"]}
           18 easy-parallel = "3.2.0"
           19 simplelog = "0.12.0-alpha1"
           20 smol = "1.2.5"