diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5b4cdb8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +target +*.lock +.vscode \ No newline at end of file diff --git a/.rustfmt.toml b/.rustfmt.toml new file mode 100644 index 0000000..fc39ab6 --- /dev/null +++ b/.rustfmt.toml @@ -0,0 +1 @@ +use_small_heuristics = "Max" \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..d87f627 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "ndarray-image" +version = "0.1.0" +authors = ["Nil Goyette "] +edition = "2018" + +repository = "https://github.com/imeka/ndarray-image" + +description = "Multidimensional image processing for ArrayBase, the n-dimensional array data structure provided by ndarray." +keywords = ["array", "image", "multidimensional", "matrix", "ndarray"] +categories = ["data-structures", "science"] + +[dependencies] +ndarray = { version="0.15", features = ["approx"] } diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/src/lib.rs @@ -0,0 +1 @@ +