-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
27 lines (24 loc) · 898 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "nshare"
version = "0.10.0"
authors = ["Geordon Worley <vadixidav@gmail.com>"]
edition = "2021"
description = "Conversion between n-dimensional types in different Rust crates"
documentation = "https://docs.rs/nshare/"
repository = "https://github.com/rust-cv/nshare"
keywords = ["ndarray", "nalgebra", "image", "convert", "borrow"]
categories = ["rust-patterns", "no-std"]
license = "MIT"
readme = "README.md"
[features]
default = ["alloc", "nalgebra", "ndarray", "image"]
alloc = ["nalgebra?/alloc"]
nalgebra = ["dep:nalgebra"]
ndarray = ["dep:ndarray", "alloc"]
image = ["dep:image", "alloc"]
[dependencies]
ndarray = { version = "0.16", default-features = false, optional = true }
nalgebra = { version = "0.33", default-features = false, optional = true }
image = { version = "0.25", default-features = false, optional = true }
[package.metadata.docs.rs]
all-features = true