File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,11 @@ A [separate changelog is kept for rand_core](rand_core/CHANGELOG.md).
9
9
You may also find the [ Upgrade Guide] ( https://rust-random.github.io/book/update.html ) useful.
10
10
11
11
12
+ ## [ 0.6.3] - 2019-01-04
13
+ ### Fixes
14
+ - Make the ` std ` feature require the optional ` rand_os ` dependency (#675 )
15
+ - Re-export the optional WASM dependencies of ` rand_os ` from ` rand ` to avoid breakage (#674 )
16
+
12
17
## [ 0.6.2] - 2019-01-04
13
18
### Additions
14
19
- Add ` Default ` for ` ThreadRng ` (#657 )
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " rand"
3
- version = " 0.6.2 "
3
+ version = " 0.6.3 "
4
4
authors = [" The Rand Project Developers" , " The Rust Project Developers" ]
5
5
license = " MIT/Apache-2.0"
6
6
readme = " README.md"
@@ -22,11 +22,14 @@ appveyor = { repository = "rust-random/rand" }
22
22
[features ]
23
23
default = [" std" , " rand_os" ] # without "std" rand uses libcore
24
24
nightly = [" simd_support" ] # enables all features requiring nightly rust
25
- std = [" rand_core/std" , " alloc" ]
25
+ std = [" rand_core/std" , " alloc" , " rand_os " ]
26
26
alloc = [" rand_core/alloc" ] # enables Vec and Box support (without std)
27
27
i128_support = [] # enables i128 and u128 support
28
28
simd_support = [" packed_simd" ] # enables SIMD support
29
29
serde1 = [" rand_core/serde1" , " rand_isaac/serde1" , " rand_xorshift/serde1" ] # enables serialization for PRNGs
30
+ # re-export optional WASM dependencies to avoid breakage:
31
+ wasm-bindgen = [" rand_os/wasm-bindgen" ]
32
+ stdweb = [" rand_os/stdweb" ]
30
33
31
34
[workspace ]
32
35
members = [
You can’t perform that action at this time.
0 commit comments