lower the required Nim version

This commit is contained in:
Antonis Geralis 2022-08-28 22:17:52 +03:00
parent 554206d44c
commit 14df6c02e9
2 changed files with 3 additions and 1 deletions

View File

@ -98,6 +98,8 @@ interesting values, like file signatures or to limit the search space.
when defined(runFuzzTests):
type
ClientId = distinct int
proc `==`(a, b: ClientId): bool {.borrow.}
else:
type
ClientId = int

View File

@ -7,7 +7,7 @@ license = "Apache License 2.0"
srcDir = "."
skipDirs = @["tests", "benchmarks", "examples", "experiments"]
requires "nim >= 1.4.0"
requires "nim >= 1.2.0"
proc buildBinary(name: string, srcDir = "./", params = "", lang = "c") =
if not dirExists "build":