From 59a01aa2009b766416e3c47f7432260f15c8f255 Mon Sep 17 00:00:00 2001 From: Mark Spanbroek Date: Thu, 16 Dec 2021 11:47:45 +0100 Subject: [PATCH] Remove version pin on chronicles Caused dependency conflicts when combining json_rpc with other packages that depend on chronicles, now that chronicles has a new version (0.10.2). --- json_rpc.nimble | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/json_rpc.nimble b/json_rpc.nimble index 6994e6c..9c18ae7 100644 --- a/json_rpc.nimble +++ b/json_rpc.nimble @@ -12,7 +12,7 @@ requires "nim >= 1.2.0", "stint", "chronos", "httputils", - "chronicles#ba2817f1", + "chronicles", "https://github.com/status-im/news#status", "websock", "json_serialization"