-
Notifications
You must be signed in to change notification settings - Fork 373
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (24 loc) · 842 Bytes
/
Cargo.toml
File metadata and controls
33 lines (24 loc) · 842 Bytes
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
28
29
30
31
32
33
[package]
name = "ndarray-rand"
version = "0.16.0"
edition = "2018"
authors = ["bluss"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-ndarray/ndarray"
documentation = "https://docs.rs/ndarray-rand/"
readme = "README.md"
description = "Constructors for randomized arrays. `rand` integration for `ndarray`."
keywords = ["multidimensional", "matrix", "rand", "ndarray"]
[dependencies]
ndarray = { workspace = true }
rand = { workspace = true }
rand_distr = { workspace = true }
quickcheck = { workspace = true, optional = true }
half = { optional = true, version = "2.7.1", default-features = false, features = ["num-traits"] }
[dev-dependencies]
rand_isaac = "0.4.0"
quickcheck = { workspace = true }
[features]
half = ["dep:half", "ndarray/half"]
[package.metadata.release]
tag-name = "ndarray-rand-{{version}}"