Skip to content

Commit 3ea5a00

Browse files
committed
Remove public dependency
1 parent 380a018 commit 3ea5a00

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

Cargo.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
cargo-features = ["public-dependency"]
2-
31
[package]
42
name = "const-random"
5-
version = "0.1.5"
3+
version = "0.1.6
64
license = "MIT OR Apache-2.0"
75
repository = "https://github.com/tkaitchuck/constrandom"
86
documentation = "https://docs.rs/const-random"
@@ -13,5 +11,5 @@ readme = "README.md"
1311
edition = "2018"
1412

1513
[dependencies]
16-
const-random-macro = { path = "macro", version = "0.1.5", public = true}
14+
const-random-macro = { path = "macro", version = "0.1.6"}
1715
proc-macro-hack = { version = "0.5" }

macro/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "const-random-macro"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
license = "MIT OR Apache-2.0"
55
repository = "https://github.com/tkaitchuck/constrandom"
66
documentation = "https://docs.rs/const-random"
@@ -14,4 +14,4 @@ proc-macro = true
1414

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

0 commit comments

Comments
 (0)