[package]
edition = "2021"
name = "mymatrix"
version = "1.0.0"
authors = ["Chen QingYu <chen_qingyu@qq.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "My simple matrix library that can perform fraction operations."
readme = "readme.md"
keywords = [
"matrix",
"fraction",
]
license = "MIT"
repository = "https://github.com/chen-qingyu/mymatrix"
[lib]
name = "mymatrix"
path = "src/lib.rs"
[[test]]
name = "test_matrix"
path = "tests/test_matrix.rs"
[[test]]
name = "test_vector"
path = "tests/test_vector.rs"
[dependencies.auto_ops]
version = "0.3"
[dependencies.pyinrs]
version = "1.10"
[dev-dependencies.rstest]
version = "0.26"