-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
40 lines (30 loc) · 878 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
38
39
40
[package]
name = "pcg_rand"
version = "0.13.0"
authors = ["Jeb Brooks <jeb@robojeb.dev>"]
homepage = "https://github.com/robojeb/pcg_rand"
repository = "https://github.com/robojeb/pcg_rand"
documentation = "https://docs.rs/pcg_rand/"
license = "Apache-2.0"
keywords = ["rand", "pcg"]
readme = "README.md"
description = "An implementation of the PCG family of random number generators in pure Rust"
[badges]
maintenance = { status = "passively-maintained" }
travis-ci = { repository = "robojeb/pcg_rand" }
[features]
default = ["u128"]
serde1 = ["serde"]
u128 = ["num-traits/i128"]
no_deserialize_verify = []
[lib]
name = "pcg_rand"
path = "src/lib.rs"
[dependencies]
rand = { version="0.8"}
rand_core = "0.6"
num-traits = { version="0.2" }
byteorder = "1.2"
serde = { version = "1", optional = true, features=["derive"]}
[dev-dependencies]
serde_json = { version="1"}