fetch custom websock to allow higher chronos versions

This commit is contained in:
Ivan Folgueira Bande 2026-02-13 21:50:36 +01:00
parent 3937c72487
commit 672840520e
No known key found for this signature in database
GPG Key ID: 3C117481F89E24A7
2 changed files with 10 additions and 8 deletions

View File

@ -169,8 +169,8 @@
}
},
"chronos": {
"version": "4.0.4",
"vcsRevision": "0646c444fce7c7ed08ef6f2c9a7abfd172ffe655",
"version": "4.2.0",
"vcsRevision": "0d00279e67ad9fadeb944944449adc89f052b8bd",
"url": "https://github.com/status-im/nim-chronos",
"downloadMethod": "git",
"dependencies": [
@ -182,7 +182,7 @@
"unittest2"
],
"checksums": {
"sha1": "455802a90204d8ad6b31d53f2efff8ebfe4c834a"
"sha1": "add14e711abc98b2203e7c5a35c860c7b86f15b5"
}
},
"metrics": {
@ -414,9 +414,9 @@
}
},
"websock": {
"version": "0.2.1",
"vcsRevision": "35ae76f1559e835c80f9c1a3943bf995d3dd9eb5",
"url": "https://github.com/status-im/nim-websock",
"version": "#allow-high-chronos-versions",
"vcsRevision": "21a7c1982d1524081f29f7fcfab0850b80708db5",
"url": "https://github.com/status-im/nim-websock.git",
"downloadMethod": "git",
"dependencies": [
"nim",
@ -430,7 +430,7 @@
"zlib"
],
"checksums": {
"sha1": "1cb5efa10cd389bc01d0707c242ae010c76a03cd"
"sha1": "50744c55ca69a01332d38825a478e3cb13935b60"
}
},
"json_rpc": {

View File

@ -27,7 +27,6 @@ requires "nim >= 2.2.4",
"libp2p >= 1.15.1",
"eth",
"nat_traversal",
"websock",
"dnsdisc",
"dnsclient",
"httputils",
@ -57,6 +56,9 @@ requires "nim >= 2.2.4",
"testutils",
"unittest2"
# We use a custom branch to allow higher chronos versions
requires "https://github.com/status-im/nim-websock.git#allow-high-chronos-versions"
# Packages not on nimble (use git URLs)
requires "https://github.com/vacp2p/nim-lsquic"
requires "https://github.com/logos-messaging/nim-ffi"