-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (20 loc) · 703 Bytes
/
Cargo.toml
File metadata and controls
26 lines (20 loc) · 703 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
[package]
name = "rand_dev"
version = "0.2.0"
license = "MIT OR Apache-2.0"
edition = "2024"
description = "Reproducible randomness source for tests"
categories = ["development-tools", "development-tools::debugging", "development-tools::testing"]
keywords = ["tests", "reproducibility", "rand"]
repository = "https://github.com/survived/rand_dev"
[dependencies]
rand_core = { version = "0.9", features = ["os_rng"] }
rand_chacha = "0.9"
getrandom = { version = "0.3", default-features = false }
const-hex = { version = "1", default-features = false, features = ["alloc"] }
rand = { version = "0.9", optional = true }
[dev-dependencies]
rand = "0.9"
[features]
default = []
rand-v09 = ["dep:rand"]