-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (20 loc) · 705 Bytes
/
Cargo.toml
File metadata and controls
23 lines (20 loc) · 705 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "rawarray"
description = "simple file format for retrievably storing n-dimensional arrays"
version = "0.1.4"
authors = ["David S. Smith <david.smith@gmail.com>"]
edition = "2021"
readme = "README.md"
categories = ["science", "mathematics", "encoding", "filesystem", "data-structures"]
homepage = "https://crates.io/crates/rawarray"
repository = "https://github.com/davidssmith/rawarray-rust"
license = "MIT"
[dependencies]
half = { version = "2.7.1", optional = true }
ndarray = { version = "0.17.2", optional = true }
num-complex = { version = "0.4.6", optional = true }
num-traits = "0.2.10"
[features]
half = ["dep:half"]
ndarray = ["dep:ndarray"]
num-complex = ["dep:num-complex"]