Skip to content

Commit 900a6cd

Browse files
committed
fix rand_os no_std support
1 parent 40dbb54 commit 900a6cd

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

rand_os/CHANGELOG.md

+9-4
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,27 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.2.1] - 2019-08-08
8+
### Fixed
9+
- Fix `no_std` support.
710

811
## [0.2.0] - 2019-06-06
9-
Replaced implementation with a backwards-compatible shim around
12+
### Changed
13+
- Minimum Supported Rust Version has changed to 1.32.
14+
- Replaced implementation with a backwards-compatible shim around
1015
[getrandom](https://crates.io/crates/getrandom).
1116

1217
## [0.1.3] - 2019-03-05
13-
### Changes
18+
### Fixed
1419
- Fix support for Illumos (#730)
1520
- Fix deprecation warnings from atomic init (#739)
1621

1722
## [0.1.2] - 2019-01-28
18-
### Changes
23+
### Changed
1924
- Fuchsia: Replaced fuchsia-zircon with fuchsia-cprng
2025

2126
## [0.1.1] - 2019-01-08
22-
### Additions
27+
### Added
2328
- Add support for x86_64-fortanix-unknown-sgx target (#670)
2429

2530
## [0.1.0] - 2019-01-04

rand_os/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rand_os"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
authors = ["The Rand Project Developers"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"
@@ -22,5 +22,5 @@ wasm-bindgen = ["getrandom/wasm-bindgen"]
2222
stdweb = ["getrandom/stdweb"]
2323

2424
[dependencies]
25-
rand_core = { path = "../rand_core", version = "0.5", features = ["std"] }
25+
rand_core = { path = "../rand_core", version = "0.5", features = ["getrandom"] }
2626
getrandom = "0.1.1"

0 commit comments

Comments
 (0)