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

View File

@ -27,7 +27,6 @@ requires "nim >= 2.2.4",
"libp2p >= 1.15.1", "libp2p >= 1.15.1",
"eth", "eth",
"nat_traversal", "nat_traversal",
"websock",
"dnsdisc", "dnsdisc",
"dnsclient", "dnsclient",
"httputils", "httputils",
@ -57,6 +56,9 @@ requires "nim >= 2.2.4",
"testutils", "testutils",
"unittest2" "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) # Packages not on nimble (use git URLs)
requires "https://github.com/vacp2p/nim-lsquic" requires "https://github.com/vacp2p/nim-lsquic"
requires "https://github.com/logos-messaging/nim-ffi" requires "https://github.com/logos-messaging/nim-ffi"