This is a Poetry project, mostly for managing the virtual environment
Cargo workspace
The main library project, compiled both as a Rust lib (for the CLI to link to), and as a C dynamic library for the Python bindings
Pure Rust CLI
Python CLI using the string_sum
module
- virtual environment:
poetry shell
at the top level - building the library: (with venv active)
maturin develop
instring_sum
- building the Rust CLI:
cargo build
instring_cli