45 lines
1.9 KiB
Nim
45 lines
1.9 KiB
Nim
## nim-ws
|
|
## Copyright (c) 2021 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.
|
|
|
|
packageName = "ws"
|
|
version = "0.1.0"
|
|
author = "Status Research & Development GmbH"
|
|
description = "WS protocol implementation"
|
|
license = "MIT"
|
|
skipDirs = @["examples", "tests"]
|
|
|
|
requires "nim >= 1.2.0" # nimble will fail to install nim-ws if we are using 1.2.6 here
|
|
requires "chronos >= 3.0.0"
|
|
requires "httputils >= 0.2.0"
|
|
requires "chronicles#ba2817f1"
|
|
requires "stew >= 0.1.0"
|
|
requires "asynctest >= 0.2.0 & < 0.3.0"
|
|
requires "nimcrypto"
|
|
requires "bearssl"
|
|
requires "https://github.com/status-im/nim-zlib"
|
|
|
|
task test, "run tests":
|
|
# dont't need to run it, only want to test if it is compileable
|
|
exec "nim c -c --verbosity:0 --hints:off -d:chronicles_log_level=TRACE -d:chronicles_sinks:json ./tests/testcommon"
|
|
|
|
exec "nim --hints:off c -r --opt:speed -d:debug --verbosity:0 --hints:off -d:chronicles_log_level=info ./tests/testcommon.nim"
|
|
rmFile "./tests/testcommon"
|
|
|
|
exec "nim --hints:off c -r --opt:speed -d:debug --verbosity:0 --hints:off -d:chronicles_log_level=info ./tests/testwebsockets.nim"
|
|
rmFile "./tests/testwebsockets"
|
|
|
|
exec "nim --hints:off -d:secure c -r --opt:speed -d:debug --verbosity:0 --hints:off -d:chronicles_log_level=info ./tests/testwebsockets.nim"
|
|
rmFile "./tests/testwebsockets"
|
|
|
|
exec "nim --hints:off -d:accepts c -r --opt:speed -d:debug --verbosity:0 --hints:off -d:chronicles_log_level=info ./tests/testwebsockets.nim"
|
|
rmFile "./tests/testwebsockets"
|
|
|
|
exec "nim --hints:off -d:secure -d:accepts c -r --opt:speed -d:debug --verbosity:0 --hints:off -d:chronicles_log_level=info ./tests/testwebsockets.nim"
|
|
rmFile "./tests/testwebsockets"
|