chore(meta): update name and metadata
This commit is contained in:
parent
3e66414009
commit
baf4264ea1
4 changed files with 8 additions and 6 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
|
@ -3,5 +3,5 @@
|
||||||
version = 3
|
version = 3
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "matrix-rs"
|
name = "matrix"
|
||||||
version = "0.1.0"
|
version = "0.1.3"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "matrix-rs"
|
name = "matrix"
|
||||||
version = "0.1.0"
|
version = "0.1.3"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Zhongheng Liu <z.liu@outlook.com.gr>"]
|
authors = ["Zhongheng Liu <z.liu@outlook.com.gr>"]
|
||||||
homepage = "https://stvnliu.gitlab.io"
|
homepage = "https://stvnliu.gitlab.io"
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
mod types;
|
pub mod types;
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests;
|
mod tests;
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,9 @@
|
||||||
use std::{fmt::Display, ops::Add, str::FromStr};
|
use std::{fmt::Display, ops::Add, str::FromStr};
|
||||||
|
|
||||||
use super::matrix_err::{MatrixSetValueError, ParseMatrixError};
|
use super::matrix_err::{MatrixSetValueError, ParseMatrixError};
|
||||||
/// Matrix
|
/// A Matrix struct
|
||||||
|
///
|
||||||
|
///
|
||||||
#[derive(Debug, PartialEq, Eq)]
|
#[derive(Debug, PartialEq, Eq)]
|
||||||
pub struct Matrix {
|
pub struct Matrix {
|
||||||
pub nrows: usize,
|
pub nrows: usize,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue