Volker Mische
Volker Mische
Currently the CI is running the tests on machines that have a GPU. Run all those test combinations also on machines that don't have a GPU.
To get a better idea of which code paths are currently tested, add code coverage reports to the CI.
This commit adds support for ni-porep. Also Rust >= 1.70 is needed due to the dependency on `home` v0.5.9 and fix the corresponding new Clippy warnings. --- This is only...
Use the same rust version on CI as in the rust-toolchain.toml file.
[CircleCI is sunsetting all Intel MacOS machines in 2024](https://discuss.circleci.com/t/macos-intel-support-deprecation-in-january-2024/48718). Currently we use such a machine to create universal binaries. We should switch to an ARM based machine and cross-compile to...
@Mikeal If it would've been a PR, I could've commented there. In the [Addressing](https://github.com/ipld/docs/blob/864c017f7fb73ba12503569842c78f5dcb3c06c8/tutorials/thinking.md#addressing) section your write: > We encode this data using JSON. Now it has been serialized to...
I'm currently working on https://github.com/ipld/js-ipld-bitcoin. I use go-ipld-btc as a reference and hence port the tests. My knowledge about Bitcoin is really limited, so I've a few questions. The testdata...
The libipld crates are superseded by `ipld-core` and companion crates like `serde_ipld_dagcbor`, `serde_ipld_dagjson` and `ipld-dagpb`. The plan is to archive this repo after that PR is merged.
Current DAG-JSON cannot decode large negative integers as floats. If they are outside the i64 range, they get automatically converted into a float. This means that decoding a number like...
Changing from newtype struct to enum should hopefully make things more robust.