-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (23 loc) · 723 Bytes
/
Copy pathCargo.toml
File metadata and controls
27 lines (23 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "matrix-lib"
version = "0.1.0"
edition = "2021"
authors = ["Your Name <your.email@example.com>"]
description = "A generic matrix library for Rust with basic linear algebra operations"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/code-wolf-byte/matrix-lib"
keywords = ["matrix", "linear-algebra", "math", "mathematics"]
categories = ["mathematics", "algorithms", "data-structures"]
[lib]
name = "matrix_lib_python"
path = "src/lib.rs"
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "matrix_example"
path = "src/main.rs"
[[example]]
name = "ndarray_demo"
path = "examples/ndarray_demo.rs"
[dependencies]
pyo3 = { version = "0.25", features = ["extension-module"] }