2023-07-27 16:43:02 +03:00
|
|
|
# nim-raft-consensus
|
|
|
|
# Copyright (c) 2023 Status Research & Development GmbH
|
|
|
|
# Licensed under either of
|
|
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE))
|
|
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT))
|
|
|
|
# at your option.
|
|
|
|
# This file may not be copied, modified, or distributed except according to
|
|
|
|
# those terms.
|
|
|
|
|
|
|
|
mode = ScriptMode.Verbose
|
|
|
|
|
2023-07-28 00:33:55 +03:00
|
|
|
packageName = "raft_consensus"
|
2023-07-27 16:43:02 +03:00
|
|
|
version = "0.0.1"
|
|
|
|
author = "Status Research & Development GmbH"
|
|
|
|
description = "raft consensus in nim"
|
|
|
|
license = "Apache License 2.0"
|
|
|
|
|
2023-07-28 00:49:37 +03:00
|
|
|
requires "nim >= 1.6.0"
|
2023-07-27 16:43:02 +03:00
|
|
|
requires "stew >= 0.1.0"
|
2023-07-28 00:49:37 +03:00
|
|
|
requires "nimcrypto >= 0.5.4"
|
|
|
|
requires "unittest2 >= 0.0.4"
|
|
|
|
requires "chronicles >= 0.10.2"
|
2023-07-29 06:10:45 +03:00
|
|
|
requires "fsm.nim >= 0.1.0"
|
2023-07-27 16:43:02 +03:00
|
|
|
|
|
|
|
# Helper functions
|