Merge pull request #689 from newpavlov/patch-1

Disable default features for rand_core
diff --git a/Cargo.toml b/Cargo.toml
index 6ffd4a1..82ab1f0 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "rand"
-version = "0.4.4"
+version = "0.4.5"
 authors = ["The Rust Project Developers"]
 license = "MIT/Apache-2.0"
 readme = "README.md"
@@ -36,4 +36,4 @@
 
 [target.'cfg(target_env = "sgx")'.dependencies]
 rdrand = "0.4.0"
-rand_core = "0.3.0"
+rand_core = { version = "0.3", default-features = false }