chore(meta): update name and metadata

This commit is contained in:
Zhongheng Liu 2025-01-23 00:01:29 +02:00
commit baf4264ea1
Signed by: steven
GPG key ID: 805A28B071DAD84B
4 changed files with 8 additions and 6 deletions

4
Cargo.lock generated
View file

@ -3,5 +3,5 @@
version = 3
[[package]]
name = "matrix-rs"
version = "0.1.0"
name = "matrix"
version = "0.1.3"

View file

@ -1,6 +1,6 @@
[package]
name = "matrix-rs"
version = "0.1.0"
name = "matrix"
version = "0.1.3"
edition = "2021"
authors = ["Zhongheng Liu <z.liu@outlook.com.gr>"]
homepage = "https://stvnliu.gitlab.io"

View file

@ -1,4 +1,4 @@
mod types;
pub mod types;
#[cfg(test)]
mod tests;

View file

@ -1,7 +1,9 @@
use std::{fmt::Display, ops::Add, str::FromStr};
use super::matrix_err::{MatrixSetValueError, ParseMatrixError};
/// Matrix
/// A Matrix struct
///
///
#[derive(Debug, PartialEq, Eq)]
pub struct Matrix {
pub nrows: usize,