@@ -24,7 +24,7 @@ std = ["rand_core/std", "rand_isaac/std", "rand_xorshift/std", "alloc", "libc",
24
24
alloc = [" rand_core/alloc" ] # enables Vec and Box support (without std)
25
25
i128_support = [] # enables i128 and u128 support
26
26
simd_support = [] # enables SIMD support
27
- serde1 = [" serde " , " serde_derive " , " rand_core/serde1" , " rand_isaac/serde1" , " rand_xorshift/serde1" ] # enables serialization for PRNGs
27
+ serde1 = [" rand_core/serde1" , " rand_isaac/serde1" , " rand_xorshift/serde1" ] # enables serialization for PRNGs
28
28
29
29
[workspace ]
30
30
members = [" rand_core" , " rand_isaac" , " rand_xorshift" ]
@@ -35,8 +35,6 @@ rand_core = { path = "rand_core", version = "0.2", default-features = false }
35
35
rand_isaac = { path = " rand_isaac" , version = " 0.1" }
36
36
rand_xorshift = { path = " rand_xorshift" , version = " 0.1" }
37
37
log = { version = " 0.4" , optional = true }
38
- serde = { version = " 1" , optional = true }
39
- serde_derive = { version = " 1" , optional = true }
40
38
41
39
[target .'cfg(unix)' .dependencies ]
42
40
libc = { version = " 0.2" , optional = true }
@@ -55,10 +53,5 @@ fuchsia-zircon = { version = "0.3.2", optional = true }
55
53
stdweb = { version = " 0.4" , optional = true }
56
54
wasm-bindgen = { version = " 0.2" , optional = true }
57
55
58
- [dev-dependencies ]
59
- # This is for testing serde, unfortunately we can't specify feature-gated dev
60
- # deps yet, see: https://github.com/rust-lang/cargo/issues/1596
61
- bincode = " 1.0"
62
-
63
56
[package .metadata .docs .rs ]
64
57
all-features = true
0 commit comments