constantine/constantine.nimble

27 lines
1.0 KiB
Plaintext
Raw Normal View History

packageName = "constantine"
2018-07-24 14:52:18 +00:00
version = "0.0.1"
author = "Status Research & Development GmbH"
description = "This library provides constant time big int primitives."
2018-07-24 14:52:18 +00:00
license = "MIT or Apache License 2.0"
srcDir = "src"
### Dependencies
2020-02-22 15:37:31 +00:00
requires "nim >= 1.1.0"
2018-07-24 14:52:18 +00:00
### Helper functions
proc test(fakeCurves: string, path: string, lang = "c") =
2018-07-24 14:52:18 +00:00
if not dirExists "build":
mkDir "build"
exec "nim " & lang & fakeCurves & " --outdir:build -r --hints:off --warnings:off " & path
2018-07-24 14:52:18 +00:00
### tasks
task test, "Run all tests":
test "", "tests/test_primitives.nim"
2020-02-16 10:29:27 +00:00
test "", "tests/test_io_bigints.nim"
test "", "tests/test_bigints.nim"
test "", "tests/test_bigints_multimod.nim"
test "", "tests/test_bigints_vs_gmp.nim"
test "", "tests/test_finite_fields.nim"
test "", "tests/test_finite_fields_vs_gmp.nim"
test "", "tests/test_finite_fields_powinv.nim"