Skip to content

Commit

Permalink
Remove public dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
tkaitchuck committed Aug 6, 2019
1 parent 380a018 commit 2e9b467
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 2 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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" }
4 changes: 2 additions & 2 deletions macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -14,4 +14,4 @@ proc-macro = true

[dependencies]
proc-macro-hack = { version = "0.5" }
rand = { version = "0.7", default-features = false, features = ["getrandom"] }
rand = { version = "0.7", default-features = false, features = ["getrandom"] }

0 comments on commit 2e9b467

Please sign in to comment.