matrix-basic/Cargo.toml

19 lines
584 B
TOML
Raw Normal View History

2023-05-24 21:46:25 -05:00
[package]
2023-05-25 20:52:59 -05:00
name = "matrix-basic"
2023-05-27 02:40:13 -05:00
version = "0.3.0"
2023-05-24 21:46:25 -05:00
edition = "2021"
2023-05-25 20:43:31 -05:00
authors = ["Sayantan Santra <sayantan[dot]santra689[at]gmail[dot]com"]
license = "GPL-3.0"
description = "A Rust crate for very basic matrix operations"
2023-05-25 20:52:59 -05:00
homepage = "https://crates.io/crates/matrix-basic"
documentation = "https://docs.rs/matrix-basic"
repository = "https://github.com/SinTan1729/matrix-basic"
2023-05-25 20:43:31 -05:00
readme = "README.md"
keywords = ["matrix", "math"]
categories = ["mathematics"]
2023-05-24 21:46:25 -05:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-05-24 22:50:52 -05:00
num = "0.4.0"