From 2ee209af39962ab1716904923c36e124f74bf2b1 Mon Sep 17 00:00:00 2001 From: jangko Date: Wed, 23 Jun 2021 15:47:31 +0700 Subject: [PATCH] update .nimble [skip ci] - change nim dependency from "1.2.6" to "1.2.0" because nimble refuse to install it when we are using nimbus-build-system - fixes skipdir entry --- ws.nimble | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ws.nimble b/ws.nimble index 28729cb2..a994508d 100644 --- a/ws.nimble +++ b/ws.nimble @@ -8,13 +8,13 @@ ## those terms. packageName = "ws" -version = "0.1.0" -author = "Status Research & Development GmbH" +version = "0.1.0" +author = "Status Research & Development GmbH" description = "WS protocol implementation" -license = "MIT" -skipDirs = @["examples", "test"] +license = "MIT" +skipDirs = @["examples", "tests"] -requires "nim >= 1.2.6" +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 >= 0.10.0"