# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "nshare" version = "0.10.0" authors = ["Geordon Worley "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Conversion between n-dimensional types in different Rust crates" documentation = "https://docs.rs/nshare/" readme = "README.md" keywords = [ "ndarray", "nalgebra", "image", "convert", "borrow", ] categories = [ "rust-patterns", "no-std", ] license = "MIT" repository = "https://github.com/rust-cv/nshare" [package.metadata.docs.rs] all-features = true [lib] name = "nshare" path = "src/lib.rs" [[test]] name = "nalgebra" path = "tests/nalgebra.rs" [dependencies.image] version = "0.25" optional = true default-features = false [dependencies.nalgebra] version = "0.33" optional = true default-features = false [dependencies.ndarray] version = "0.16" optional = true default-features = false [features] alloc = ["nalgebra?/alloc"] default = [ "alloc", "nalgebra", "ndarray", "image", ] image = [ "dep:image", "alloc", ] nalgebra = ["dep:nalgebra"] ndarray = [ "dep:ndarray", "alloc", ]