Remove version pin on chronicles (#97)

* Remove version pin on chronicles

Caused dependency conflicts when combining websock with other
packages that depend on chronicles, now that chronicles has
a new version (0.10.2).

* Ensure that chronicles version supports isLogFormatUsed
This commit is contained in:
markspanbroek 2021-12-16 14:26:49 +01:00 committed by GitHub
parent a697e3585d
commit c2aae352f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ skipDirs = @["examples", "tests"]
requires "nim >= 1.2.0" # nimble will fail to install nim-websock if we are using 1.2.6 here requires "nim >= 1.2.0" # nimble will fail to install nim-websock if we are using 1.2.6 here
requires "chronos >= 3.0.0" requires "chronos >= 3.0.0"
requires "httputils >= 0.2.0" requires "httputils >= 0.2.0"
requires "chronicles#ba2817f1" requires "chronicles >= 0.10.2"
requires "stew >= 0.1.0" requires "stew >= 0.1.0"
requires "asynctest >= 0.3.0 & < 0.4.0" requires "asynctest >= 0.3.0 & < 0.4.0"
requires "nimcrypto" requires "nimcrypto"