2023-08-09 13:06:34 +03:00
|
|
|
# nim-raft
|
|
|
|
# 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
|
|
|
|
|
|
|
|
packageName = "raft"
|
|
|
|
version = "0.0.1"
|
|
|
|
author = "Status Research & Development GmbH"
|
|
|
|
description = "raft consensus in nim"
|
|
|
|
license = "Apache License 2.0"
|
2024-02-13 14:40:59 +02:00
|
|
|
srcDir = "src"
|
2024-02-13 13:59:14 +02:00
|
|
|
installExt = @["nim"]
|
2023-08-09 13:06:34 +03:00
|
|
|
skipDirs = @["tests"]
|
2024-02-13 13:59:14 +02:00
|
|
|
bin = @["raft"]
|
|
|
|
|
2023-08-09 13:06:34 +03:00
|
|
|
|
2023-08-31 19:18:29 +03:00
|
|
|
requires "nim >= 1.6.14"
|
2023-08-09 13:06:34 +03:00
|
|
|
requires "stew >= 0.1.0"
|
|
|
|
requires "unittest2 >= 0.0.4"
|
2023-08-25 12:00:40 +03:00
|
|
|
requires "uuids >= 0.1.11"
|
2024-02-09 17:34:42 +02:00
|
|
|
requires "chronicles >= 0.10.3"
|
|
|
|
requires "chronos >= 3.0.11"
|
2023-08-09 13:06:34 +03:00
|
|
|
|
2023-08-31 19:18:29 +03:00
|
|
|
|