-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
26 lines (23 loc) · 884 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
[package]
authors = ["novacrazy <novacrazy@gmail.com>"]
name = "numeric-array"
description = "Wrapper around generic-array that adds efficient numeric trait implementations"
repository = "https://github.com/novacrazy/numeric-array"
documentation = "https://docs.rs/numeric-array"
version = "0.6.1"
readme = "README.md"
keywords = ["generic", "array", "numeric", "simd"]
include = ["src/**/*", "LICENSE-*", "README.md"]
license = "MIT OR Apache-2.0"
categories = ["data-structures", "no-std"]
edition = "2021"
[dependencies]
generic-array = { version = "1.1.0", default-features = false, features = ["internals"] }
num-traits = { version = "0.2", default-features = false }
serde = { version = "1.0", optional = true, default-features = false }
[features]
serde = ["dep:serde", "generic-array/serde"]
std = ["num-traits/std"]
default = ["std"]
[dev-dependencies]
serde_json = "1.0"