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 4fbfbf3 commit bb44e10
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 16 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ $ conan config install https://github.com/k-nuth/ci-utils/raw/master/conan/confi
2. Install the appropriate library:

```
$ conan install --requires=blockchain/0.37.0 --update
$ conan install --requires=blockchain/0.38.0 --update
```

For more more detailed instructions, please refer to our [documentation](https://kth.cash/docs/).
Expand Down
24 changes: 11 additions & 13 deletions conan.lock
Original file line number Diff line number Diff line change
@@ -1,27 +1,25 @@
{
"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",
"lmdb/0.9.31#fed34be26210ee8e70357aa0077fb924%1703551315.789",
"libiconv/1.17#fa54397801cd96911a8294bc5fc76335%1675449822.495",
"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%1716307500.924",
"database/0.40.0#66089526ba08f2504be2ff9368455854%1716307833.3574827",
"ctre/3.9.0#318a83b26476a59466795daac928f3ec%1715925273.754",
"consensus/0.31.0#d920af2ad2c3cfc8b267a4b59e97caa7%1716304156.3446581",
"bzip2/1.0.8#411fc05e80d47a89045edc1ee6f23c1d%1678293522.814",
"boost/1.84.0#695713218cdeec6aef61de1f34bf57ee%1706382844.645"
"boost/1.85.0#7926babdab0a9779cc164d0af6c28d5e%1715614149.259"
],
"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 @@ -65,9 +65,9 @@ def build_requirements(self):
self.test_requires("catch2/3.6.0")

def requirements(self):
self.requires("database/0.39.0", transitive_headers=True, transitive_libs=True)
self.requires("database/0.40.0", transitive_headers=True, transitive_libs=True)
if self.options.consensus:
self.requires("consensus/0.30.0", transitive_headers=True, transitive_libs=True)
self.requires("consensus/0.31.0", transitive_headers=True, transitive_libs=True)

def validate(self):
KnuthConanFileV2.validate(self)
Expand Down

0 comments on commit bb44e10

Please sign in to comment.