From 3ea5a00154211688d0785554d58d3cef2fe51105 Mon Sep 17 00:00:00 2001 From: Tom Kaitchuck Date: Tue, 6 Aug 2019 13:56:33 -0700 Subject: [PATCH] Remove public dependency --- Cargo.toml | 6 ++---- macro/Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 13df005..600d482 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,6 @@ -cargo-features = ["public-dependency"] - [package] name = "const-random" -version = "0.1.5" +version = "0.1.6 license = "MIT OR Apache-2.0" repository = "https://github.com/tkaitchuck/constrandom" documentation = "https://docs.rs/const-random" @@ -13,5 +11,5 @@ readme = "README.md" edition = "2018" [dependencies] -const-random-macro = { path = "macro", version = "0.1.5", public = true} +const-random-macro = { path = "macro", version = "0.1.6"} proc-macro-hack = { version = "0.5" } diff --git a/macro/Cargo.toml b/macro/Cargo.toml index 31b5ff6..429c33f 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "const-random-macro" -version = "0.1.5" +version = "0.1.6" license = "MIT OR Apache-2.0" repository = "https://github.com/tkaitchuck/constrandom" documentation = "https://docs.rs/const-random" @@ -14,4 +14,4 @@ proc-macro = true [dependencies] proc-macro-hack = { version = "0.5" } -rand = { version = "0.7", default-features = false, features = ["getrandom"] } \ No newline at end of file +rand = { version = "0.7", default-features = false, features = ["getrandom"] }