diff --git a/proptest-macro/Cargo.toml b/proptest-macro/Cargo.toml index 4b1dcc4a..dc47a12a 100644 --- a/proptest-macro/Cargo.toml +++ b/proptest-macro/Cargo.toml @@ -1,7 +1,15 @@ [package] name = "proptest-macro" +description = "Procedural macros for the proptest crate" version = "0.1.0" +authors = ["The Proptest Developers"] edition = "2021" +license = "MIT OR Apache-2.0" +repository = "https://github.com/proptest-rs/proptest" +homepage = "https://proptest-rs.github.io/proptest/proptest/index.html" +keywords = ["property", "testing", "quickcheck", "fuzz", "hypothesis"] +categories = ["development-tools::testing"] +rust-version = "1.65" [lib] proc-macro = true diff --git a/proptest/Cargo.toml b/proptest/Cargo.toml index 6f20b501..426ee20d 100644 --- a/proptest/Cargo.toml +++ b/proptest/Cargo.toml @@ -59,7 +59,7 @@ bit-set = [ "dep:bit-set", "dep:bit-vec" ] [dependencies] bitflags = "2" unarray = "0.1.4" -proptest-macro = { path = "../proptest-macro", optional = true } +proptest-macro = { version = "0.1", optional = true } # [dependencies.hashmap_core] # version = "0.1.5"