diff --git a/Cargo.toml b/Cargo.toml index c8500df..f9cba53 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,4 +3,12 @@ members = [ 'testsuite', 'lain', 'lain_derive', -] \ No newline at end of file +] + +[workspace.package] +version = "0.5.6" +authors = ["Lain Devs", "AFLplusplus"] +edition = "2018" +homepage = "https://github.com/AFLplusplus/lain" +keywords = ["lain", "fuzzer", "mutator", "mutate", "mutation"] +license = "MIT" diff --git a/examples/example_fuzzer/Cargo.toml b/examples/example_fuzzer/Cargo.toml index 2fcca83..caf51f8 100644 --- a/examples/example_fuzzer/Cargo.toml +++ b/examples/example_fuzzer/Cargo.toml @@ -5,5 +5,5 @@ authors = ["Lain Dev"] edition = "2018" [dependencies] -lain = { version = "0.2", path = "../../lain" } +lain = { path = "../../lain" } ctrlc = "3.1" diff --git a/lain/Cargo.toml b/lain/Cargo.toml index 6bf480b..b4172f1 100644 --- a/lain/Cargo.toml +++ b/lain/Cargo.toml @@ -1,14 +1,12 @@ [package] name = "lain" description = "Mutation framework for usage in fuzzers" -version = "0.5.5" -authors = ["Lain Devs"] -edition = "2018" -homepage = "https://github.com/AFLplusplus/lain" -documentation = "https://docs.serde.rs/lain/" -readme = "crates-io.md" -keywords = ["lain", "fuzzer", "mutator", "mutate", "mutation"] -license = "MIT" +version.workspace = true +authors.workspace = true +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true [dependencies] rand = { version = "0.8", features = ["small_rng"] } diff --git a/lain_derive/Cargo.toml b/lain_derive/Cargo.toml index 9dd0972..6004385 100644 --- a/lain_derive/Cargo.toml +++ b/lain_derive/Cargo.toml @@ -1,14 +1,12 @@ [package] name = "lain_derive" description = "Derive macros for usage with lain" -version = "0.5.5" -authors = ["Lain Devs"] -edition = "2018" -homepage = "https://github.com/AFLplusplus/lain" -keywords = ["lain", "fuzzer", "mutator", "mutate", "mutation"] -readme = "crates-io.md" -license = "MIT" -include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE", "crates-io.md"] +version.workspace = true +authors.workspace = true +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true [dependencies] syn = { version = "0.15", features = ["extra-traits"] }