-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Major update, a couple new features and more than twice as many packages
* Installation instructions for all known versions/remotes/channels * Add categories in generation and web interface * Improved generation in many ways
- Loading branch information
Showing
327 changed files
with
2,705 additions
and
432 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
- topic.library.fileformat.3dmodel | ||
- topic.library.fileformat.generic.json | ||
- topic.library.fileformat.generic.xml | ||
- topic.library.fileformat.generic.binary | ||
- topic.library.fileformat.generic.msgpack | ||
- topic.library.fileformat.generic.yaml | ||
- topic.library.fileformat.compression.bzip2 | ||
- topic.library.fileformat.image.gif | ||
- topic.library.fileformat.image.jpeg | ||
- topic.library.fileformat.image.png | ||
- topic.library.fileformat.image.tiff | ||
- topic.library.fileformat.audio | ||
- topic.library.fileformat.video | ||
- topic.library.serialization.highlevel | ||
- topic.library.serialization.lowlevel | ||
- topic.library.graphics.highlevel | ||
- topic.library.graphics.lowlevel | ||
- topic.library.graphics.3d.opengl | ||
- topic.library.graphics.image_processing | ||
- topic.library.input | ||
- topic.library.games | ||
- topic.library.development.parser_generator | ||
- topic.library.development.testing | ||
- topic.library.network.messages | ||
- topic.library.network.pubsub | ||
- topic.library.network.pubsub.mqtt | ||
- topic.library.network.crypto | ||
- topic.library.network.dns | ||
- topic.library.network.zeromq | ||
- topic.library.network.websockets | ||
- topic.library.network.packet_capture | ||
- topic.library.network.lowlevel | ||
- topic.library.network.http | ||
- topic.library.network.mail | ||
- topic.library.network.sip | ||
- topic.library.io | ||
- topic.library.async | ||
- topic.library.datetime | ||
- topic.library.terminal.cli_parsing | ||
- topic.library.qt | ||
- topic.library.math | ||
- topic.library.geo | ||
- topic.library.logging | ||
- topic.library.i18n | ||
- topic.library.regexp | ||
- topic.library.multimedia.codecs | ||
- topic.library.multimedia.audio | ||
- topic.library.database.lowlevel | ||
- topic.library.database.orm | ||
- topic.library.database.{sqlite,mysql,odbc} | ||
- topic.library.statemachine | ||
- topic.library.ai | ||
- topic.tool.build_tools | ||
- topic.tool.preprocessor | ||
- topic.tool.compiler | ||
- topic.tool.language | ||
|
||
- environment.embedded | ||
- environment.desktop | ||
- environment.mobile | ||
- environment.server | ||
|
||
- standard.cpp.98 | ||
- standard.cpp.03 | ||
- standard.cpp.11 | ||
- standard.cpp.14 | ||
- standard.cpp.17 | ||
- standard.c.89 | ||
- standard.c.99 | ||
|
||
- status.1planning | ||
- status.2prealpha | ||
- status.3alpha | ||
- status.4beta | ||
- status.5stable | ||
- status.6mature | ||
- status.7inactive |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
recipies: | ||
- repo: {bintray: 'bincrafters/public-conan/Abseil:bincrafters'} | ||
- repo: {bintray: 'bincrafters/public-conan/abseil:bincrafters'} | ||
urls: | ||
github: abseil/abseil-cpp | ||
docs: https://abseil.io/docs/cpp.html | ||
|
@@ -9,3 +9,7 @@ authors: | |
website: http://www.abseil.io/ | ||
- name: Google | ||
email: [email protected] | ||
categories: | ||
- standard.cpp.11 | ||
- topic.library | ||
- status.5stable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
recipies: | ||
- repo: {bintray: 'conan-community/conan/arduinojson:conan'} | ||
urls: | ||
github: bblanchon/ArduinoJson | ||
docs: https://arduinojson.org/doc/ | ||
categories: | ||
- topic.library.fileformat.generic.json | ||
- topic.library.serialization.lowlevel | ||
- environment.embedded | ||
- standard.cpp.98 | ||
- status.5stable | ||
code_example: | | ||
// read, modify, write | ||
JsonObject& root = jsonBuffer.parseObject(myInput); | ||
root["last_modification"] = time(); | ||
root.printTo(myOutput) | ||
// static (stack) vs. dynamic (heap) buffer | ||
StaticJsonBuffer<512> jsonBuffer | ||
DynamicJsonBuffer jsonBuffer(512) | ||
// implicit cast | ||
const char* city = root["city"]; | ||
float temp = root["temperature"]; | ||
// explicit cast | ||
auto city = root["city"].as<const char*>(); | ||
auto temp = root["temperature"].as<float>(); | ||
// parse or write to a stream: | ||
JsonObject& root = jsonBuffer.parse(Serial); | ||
root.printTo(Serial); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
recipies: | ||
- repo: {bintray: 'bincrafters/public-conan/Asio:bincrafters'} | ||
- repo: {bintray: 'bincrafters/public-conan/asio:bincrafters'} | ||
urls: | ||
github: chriskohlhoff/asio | ||
docs: https://think-async.com/Asio/Documentation | ||
docs: https://think-async.com/Asio/Documentation | ||
categories: | ||
- standard.cpp.98 | ||
- standard.cpp.11 | ||
- status.5stable | ||
- topic.library.network | ||
- topic.library.io | ||
- topic.library.async |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
recipies: | ||
- repo: {bintray: 'bincrafters/public-conan/azmq:bincrafters'} | ||
urls: | ||
github: zeromq/azmq | ||
code_example: | | ||
#include <azmq/socket.hpp> | ||
#include <boost/asio.hpp> | ||
#include <array> | ||
namespace asio = boost::asio; | ||
int main(int argc, char** argv) { | ||
asio::io_service ios; | ||
azmq::sub_socket subscriber(ios); | ||
subscriber.connect("tcp://192.168.55.112:5556"); | ||
subscriber.connect("tcp://192.168.55.201:7721"); | ||
subscriber.set_option(azmq::socket::subscribe("NASDAQ")); | ||
azmq::pub_socket publisher(ios); | ||
publisher.bind("ipc://nasdaq-feed"); | ||
std::array<char, 256> buf; | ||
for (;;) { | ||
auto size = subscriber.receive(asio::buffer(buf)); | ||
publisher.send(asio::buffer(buf)); | ||
} | ||
return 0; | ||
} | ||
categories: | ||
- standard.cpp.11 | ||
- status.5stable | ||
- topic.library.network.messages | ||
- topic.library.network.pubsub | ||
- topic.library.network.zeromq |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
recipies: | ||
- repo: {bintray: 'bincrafters/public-conan/Azure-C-Shared-Utility:bincrafters'} | ||
- repo: {bintray: 'bincrafters/public-conan/azure-c-shared-utility:bincrafters'} | ||
urls: | ||
github: Azure/azure-c-shared-utility | ||
docs: https://docs.microsoft.com/en-us/azure/iot-hub/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
recipies: | ||
- repo: {bintray: 'bincrafters/public-conan/Boost.Accumulators:bincrafters'} | ||
- repo: {bintray: 'bincrafters/public-conan/boost_accumulators:bincrafters'} | ||
urls: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
recipies: | ||
- repo: {bintray: 'bincrafters/public-conan/Boost.Algorithm:bincrafters'} | ||
- repo: {bintray: 'bincrafters/public-conan/boost_algorithm:bincrafters'} | ||
urls: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
recipies: | ||
- repo: {bintray: 'bincrafters/public-conan/Boost.Align:bincrafters'} | ||
- repo: {bintray: 'bincrafters/public-conan/boost_align:bincrafters'} | ||
urls: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
recipies: | ||
- repo: {bintray: 'bincrafters/public-conan/Boost.Any:bincrafters'} | ||
- repo: {bintray: 'bincrafters/public-conan/boost_any:bincrafters'} | ||
urls: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
recipies: | ||
- repo: {bintray: 'bincrafters/public-conan/Boost.Array:bincrafters'} | ||
- repo: {bintray: 'bincrafters/public-conan/boost_array:bincrafters'} | ||
urls: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
recipies: | ||
- repo: {bintray: 'bincrafters/public-conan/Boost.Asio:bincrafters'} | ||
- repo: {bintray: 'bincrafters/public-conan/boost_asio:bincrafters'} | ||
urls: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
recipies: | ||
- repo: {bintray: 'bincrafters/public-conan/Boost.Assert:bincrafters'} | ||
- repo: {bintray: 'bincrafters/public-conan/boost_assert:bincrafters'} | ||
urls: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
recipies: | ||
- repo: {bintray: 'bincrafters/public-conan/Boost.Assign:bincrafters'} | ||
- repo: {bintray: 'bincrafters/public-conan/boost_assign:bincrafters'} | ||
urls: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
recipies: | ||
- repo: {bintray: 'bincrafters/public-conan/Boost.Atomic:bincrafters'} | ||
- repo: {bintray: 'bincrafters/public-conan/boost_atomic:bincrafters'} | ||
urls: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,19 @@ | ||
recipies: | ||
- repo: {bintray: 'bincrafters/public-conan/Boost.Beast:bincrafters'} | ||
- repo: {bintray: 'bincrafters/public-conan/boost_beast:bincrafters'} | ||
urls: | ||
docs: http://www.boost.org/doc/libs/master/libs/beast/doc/html/index.html | ||
github: boostorg/beast | ||
docs: http://www.boost.org/doc/libs/release/libs/beast/doc/html/index.html | ||
github: boostorg/beast | ||
description: | | ||
Beast is a C++ header-only library serving as a foundation for writing interoperable networking libraries by providing low-level HTTP/1, WebSocket, and networking protocol vocabulary types and algorithms using the consistent asynchronous model of Boost.Asio. | ||
This library is designed for: | ||
<ul> | ||
<li>Symmetry: Algorithms are role-agnostic; build clients, servers, or both.</li> | ||
<li>Ease of Use: Boost.Asio users will immediately understand Beast.</li> | ||
<li>Flexibility: Users make the important decisions such as buffer or thread management.</li> | ||
<li>Performance: Build applications handling thousands of connections or more.</li> | ||
<li>Basis for Further Abstraction. Components are well-suited for building upon.</li> | ||
</ul> | ||
This library is not a client or server, but it can be used to build those things. Many examples are provided, including clients and servers, which may be used as a starting point for writing your own program. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
recipies: | ||
- repo: {bintray: 'bincrafters/public-conan/Boost.Bimap:bincrafters'} | ||
urls: {} | ||
- repo: {bintray: 'bincrafters/public-conan/boost_bimap:bincrafters'} | ||
urls: | ||
docs: http://www.boost.org/doc/libs/release/libs/bimap/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
recipies: | ||
- repo: {bintray: 'bincrafters/public-conan/Boost.Bind:bincrafters'} | ||
- repo: {bintray: 'bincrafters/public-conan/boost_bind:bincrafters'} | ||
urls: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
recipies: | ||
- repo: {bintray: 'bincrafters/public-conan/Boost.Build:bincrafters'} | ||
- repo: {bintray: 'bincrafters/public-conan/boost_build:bincrafters'} | ||
urls: | ||
docs: http://www.boost.org/build/doc/html/index.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
recipies: | ||
- repo: {bintray: 'bincrafters/public-conan/boost_callable_traits:bincrafters'} | ||
urls: | ||
github: boostorg/callable_traits |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
recipies: | ||
- repo: {bintray: 'bincrafters/public-conan/Boost.Chrono:bincrafters'} | ||
- repo: {bintray: 'bincrafters/public-conan/boost_chrono:bincrafters'} | ||
urls: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
recipies: | ||
- repo: {bintray: 'bincrafters/public-conan/Boost.Circular_Buffer:bincrafters'} | ||
- repo: {bintray: 'bincrafters/public-conan/boost_circular_buffer:bincrafters'} | ||
urls: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
recipies: | ||
- repo: {bintray: 'bincrafters/public-conan/Boost.Compatibility:bincrafters'} | ||
- repo: {bintray: 'bincrafters/public-conan/boost_compatibility:bincrafters'} | ||
urls: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
recipies: | ||
- repo: {bintray: 'bincrafters/public-conan/Boost.Compute:bincrafters'} | ||
- repo: {bintray: 'bincrafters/public-conan/boost_compute:bincrafters'} | ||
urls: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
recipies: | ||
- repo: {bintray: 'bincrafters/public-conan/Boost.Concept_Check:bincrafters'} | ||
- repo: {bintray: 'bincrafters/public-conan/boost_concept_check:bincrafters'} | ||
urls: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
recipies: | ||
- repo: {bintray: 'bincrafters/public-conan/Boost.Config:bincrafters'} | ||
- repo: {bintray: 'bincrafters/public-conan/boost_config:bincrafters'} | ||
urls: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
recipies: | ||
- repo: {bintray: 'bincrafters/public-conan/Boost.Container:bincrafters'} | ||
- repo: {bintray: 'bincrafters/public-conan/boost_container:bincrafters'} | ||
urls: {} |
Oops, something went wrong.