-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (31 loc) · 926 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
28
29
30
31
32
33
34
35
36
37
[package]
name = "rand-unique"
version = "0.2.2"
edition = "2021"
authors = ["Liam Gray <[email protected]>"]
description = "A no-std crate for generating random sequences of unique integers in O(1) time."
repository = "https://github.com/hoxxep/rand-unique"
documentation = "https://docs.rs/rand-unique"
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["random", "unique", "numbers", "sequence", "integers"]
categories = ["algorithms", "no-std"]
exclude = ["Cargo.lock", "charts/*", ".github"]
[lib]
[[bench]]
name = "bench"
harness = false
[dependencies]
num-traits = "0.2"
rand = { version = "0", default-features = false, optional = true }
serde = { version = "1", optional = true, features = ["derive"] }
[dev-dependencies]
criterion = "0.5"
is_prime = "2.0"
plotters = "0.3"
statrs = "0.17"
[features]
default = ["rand"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]