mirror of
https://github.com/vacp2p/mix.git
synced 2026-01-09 23:08:09 -05:00
19 lines
481 B
Nim
19 lines
481 B
Nim
# mix.nimble
|
|
version = "0.1.0"
|
|
author = "Akshaya"
|
|
description = "A custom Mix Protocol"
|
|
license = "MIT"
|
|
|
|
# Dependencies
|
|
requires "nim >= 1.6.0"
|
|
requires "nimcrypto >= 0.6.0"
|
|
requires "libp2p >= 1.4.0"
|
|
requires "protobuf_serialization >= 0.3.0"
|
|
requires "serialization >= 0.2.2"
|
|
|
|
# Set the source directory
|
|
srcDir = "src"
|
|
|
|
task test, "Run the test suite":
|
|
exec "nim c -r --path:src tests/test_crypto.nim"
|
|
exec "nim c -r --path:src tests/test_curve25519.nim" |