cpp-ipfs-http-client
cpp-ipfs-http-client copied to clipboard
IPFS C++ HTTP API client library
I'm testing your project right now. Could be nice to create a pkg-config file like in: https://github.com/sebastiandev/zipper/blob/master/zipper.pc.cmakein Or for Makefile: https://github.com/Lecrapouille/MyMakefile/blob/master/Makefile.macros#L165 sudo make install will install it: https://github.com/Lecrapouille/MyMakefile/blob/master/Makefile.macros#L181 https://github.com/Lecrapouille/MyMakefile/blob/master/Makefile.macros#L63 (not...
Install the project... -- Install configuration: "" -- Installing: /usr/local/lib/libipfs-http-client.a -- Installing: /usr/local/include/ipfs/client.h -- Installing: /usr/local/include/ipfs/http/transport.h -- Installing: /usr/local/include/nlohmann/json.hpp But nlohmann/adl_serializer.hpp is not copied while present in ./build/_deps/json-src/include/nlohmann/adl_serializer.hpp Therefore this...
I _suspect_ the following code, is maybe causing down-graded performance: In [`FetchAndParseJson()`](https://github.com/vasild/cpp-ipfs-http-client/blob/master/src/client.cc#L498): ```cpp std::stringstream body; body.str(); //
Hi, thank you for making this library. I plan on using it in an app i'm making could not find a way to get transfer progress incase of file download/upload....
* Don't add additional build flags during code coverage * Validate if code coverage numbers gets better (not messed up)
The following two test cases take up 99% of the execution time: * test_dht * test_name Which won't help short development cycles in a DevOps cycle and fast CI/CD. Let's...
From Kubo 0.28, most of DHT RPC commands are removed (except for `query`) since they were already deprecated. Instead, use `/api/v0/routing`. At the moment, it should be a drop-in replacement.