Skip to content

Commit

Permalink
upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
fpelliccioni committed May 21, 2024
1 parent 40a4506 commit 4acc5b5
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 18 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ $ conan config install https://github.com/k-nuth/ci-utils/raw/master/conan/confi
2. Install the appropriate library:

```
$ conan install --requires=node/0.42.0 --update
$ conan install --requires=node/0.43.0 --update
```

For more more detailed instructions, please refer to our [documentation](https://kth.cash/docs/).
Expand Down
28 changes: 13 additions & 15 deletions conan.lock
Original file line number Diff line number Diff line change
@@ -1,29 +1,27 @@
{
"version": "0.5",
"requires": [
"zlib/1.3#06023034579559bb64357db3a53f88a4%1692672716.907",
"spdlog/1.13.0#2775cc949e26b339029a852785b6b276%1705707717.233",
"zlib/1.2.13#e377bee636333ae348d51ca90874e353%1682597484.674",
"spdlog/1.14.1#972bbf70be1da4bc57ea589af0efde03%1714610543.14",
"secp256k1/0.18.0#c2e7e05855c71cb8f4e350a7aa10bfa9%1698921631.178",
"network/0.41.0#074b76ef7ec82bf59a4add230d0fa4f1%1706986970.124",
"lmdb/0.9.31#fed34be26210ee8e70357aa0077fb924%1703551315.789",
"libiconv/1.17#fa54397801cd96911a8294bc5fc76335%1675449822.495",
"network/0.42.0#6e885dcb9c7a849f7b575337c96145f8%1716307704.3846655",
"lmdb/0.9.32#a9b704c2cb978c03eea680da55f26f8e%1715166447.685",
"libbacktrace/cci.20210118#ec1aa63bbc10145c6a299e68e711670c%1676205469.545",
"infrastructure/0.32.0#ca438a22e0ec5b0e3f3bfe421227e761%1706978102.691",
"infrastructure/0.33.0#c3d2ff2347f7023b2f2ed475109cea7a%1716304697.223",
"gmp/6.3.0#df20ffb6d21c34d67704305bcd1dea9e%1698225617.026",
"fmt/10.2.1#9199a7a0611866dea5c8849a77467b25%1704415120.216",
"expected-lite/0.6.3#262026767cf9d5ab1fdccb25c9bdbac2%1692807329.641",
"domain/0.34.0#242d4d853892a0dbb43f571685efcd82%1706989053.084",
"database/0.39.0#b361d4a5c699a2e4ce848f9b736d9b23%1706986998.16",
"ctre/3.8.1#40ac42de50d5ff58fdee27f3f13a9ada%1697312280.727",
"consensus/0.30.0#e189cfa4e659af195a6f1795b433cd82%1706978056.505",
"domain/0.35.0#31e3c025ecabc5e2d2497315f406edb5%1716307558.582",
"database/0.40.0#66089526ba08f2504be2ff9368455854%1716308565.049",
"ctre/3.9.0#318a83b26476a59466795daac928f3ec%1715925273.754",
"consensus/0.31.0#d920af2ad2c3cfc8b267a4b59e97caa7%1716304670.907",
"bzip2/1.0.8#411fc05e80d47a89045edc1ee6f23c1d%1678293522.814",
"boost/1.84.0#695713218cdeec6aef61de1f34bf57ee%1706382844.645",
"blockchain/0.37.0#9d5bd965ef86ccb0541fbe9abb264a93%1706992932.794"
"boost/1.85.0#7926babdab0a9779cc164d0af6c28d5e%1715614149.259",
"blockchain/0.38.0#3782ac84116af2ba5c6d3e991a883cba%1716310306.7224002"
],
"build_requires": [
"m4/1.4.19#b38ced39a01e31fef5435bc634461fd2%1700758725.451",
"m4/1.4.19#c1c4b1ee919e34630bb9b50046253d3c%1676610086.39",
"b2/4.10.1#8dc3df1cc73ad65d86cbdfd31fdb011f%1690006205.975"
],
"python_requires": [],
"config_requires": []
"python_requires": []
}
4 changes: 2 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ def build_requirements(self):
self.test_requires("catch2/3.6.0")

def requirements(self):
self.requires("blockchain/0.37.0", transitive_headers=True, transitive_libs=True)
self.requires("blockchain/0.38.0", transitive_headers=True, transitive_libs=True)

if self.settings.os != "Emscripten":
self.requires("network/0.41.0", transitive_headers=True, transitive_libs=True)
self.requires("network/0.42.0", transitive_headers=True, transitive_libs=True)

if self.options.statistics:
self.requires("tabulate/1.0@", transitive_headers=True, transitive_libs=True)
Expand Down

0 comments on commit 4acc5b5

Please sign in to comment.