my_rust_lib 0.1.0

A Rust library that provides an add function for both Rust and Python.
Documentation
1
2
3
4
5
6
7
8
9
10
[package]
name = "my_rust_lib"
version = "0.1.0"
edition = "2021"
description = "A Rust library that provides an add function for both Rust and Python."
license = "MIT"  # Choose an appropriate license
authors = ["Kabelo Masemola<kabelo.masemola@maskab.co.za"]  # Update with your info

[dependencies]
pyo3 = { version = "0.18", features = ["extension-module"] }