Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sbmueller/rust-conan-template
Proof of concept how to use a Rust library as Conan dependency in a C++ program
https://github.com/sbmueller/rust-conan-template
conan cpp rust
Last synced: 4 days ago
JSON representation
Proof of concept how to use a Rust library as Conan dependency in a C++ program
- Host: GitHub
- URL: https://github.com/sbmueller/rust-conan-template
- Owner: sbmueller
- License: gpl-3.0
- Created: 2023-08-09T17:49:09.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-09T18:14:45.000Z (over 1 year ago)
- Last Synced: 2024-12-16T01:36:41.784Z (7 days ago)
- Topics: conan, cpp, rust
- Language: Python
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rust Conan Template
This repository is a proof of concept (PoC) on
1. How to write a library in Rust and offer an interface to C/C++
2. How to wrap a Rust library in a Conan package
3. How to use a Conan wrapped Rust library from a C++ applicationThe repository consists of two Conan packages.
- `add_rs` is a library written in Rust, that offers adding two integers via
its public interface
- `add_cpp` is a C++ application that adds two numbers, making use of `add_rs`