new: Added README

This commit is contained in:
Sayantan Santra 2023-05-25 20:52:59 -05:00
parent 1007a600e7
commit 7adb10f7a7
Signed by: SinTan1729
GPG key ID: EB3E68BFBA25C85F
2 changed files with 13 additions and 4 deletions

View file

@ -1,13 +1,13 @@
[package] [package]
name = "matrix" name = "matrix-basic"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
authors = ["Sayantan Santra <sayantan[dot]santra689[at]gmail[dot]com"] authors = ["Sayantan Santra <sayantan[dot]santra689[at]gmail[dot]com"]
license = "GPL-3.0" license = "GPL-3.0"
description = "A Rust crate for very basic matrix operations" description = "A Rust crate for very basic matrix operations"
homepage = "https://github.com/SinTan1729/matrix" homepage = "https://crates.io/crates/matrix-basic"
documentation = "https://docs.rs/matrix" documentation = "https://docs.rs/matrix-basic"
repository = "https://github.com/SinTan1729/matrix" repository = "https://github.com/SinTan1729/matrix-basic"
readme = "README.md" readme = "README.md"
keywords = ["matrix", "math"] keywords = ["matrix", "math"]
categories = ["mathematics"] categories = ["mathematics"]

9
README.md Normal file
View file

@ -0,0 +1,9 @@
[![crate.io badge](https://img.shields.io/crates/d/matrix-basic)](https://crates.io/crates/matrix-basic)
# `matrix-basic`
### A Rust crate for very basic matrix operations
This is a crate for very basic matrix operations with any type that supports addition, substraction,
and multiplication. Additional properties might be needed for certain operations.
I created it mostly to learn using generic types and traits.