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
|
||||
|
||||
[[package]]
|
||||
name = "matrix-rs"
|
||||
version = "0.1.0"
|
||||
name = "matrix"
|
||||
version = "0.1.3"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
mod types;
|
||||
pub mod types;
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests;
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue