Skip to content

Commit

Permalink
use workspace versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
addisoncrump committed May 8, 2024
1 parent 42a31bc commit dbcde17
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 18 deletions.
10 changes: 9 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,12 @@ members = [
'testsuite',
'lain',
'lain_derive',
]
]

[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"
2 changes: 1 addition & 1 deletion examples/example_fuzzer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ authors = ["Lain Dev"]
edition = "2018"

[dependencies]
lain = { version = "0.2", path = "../../lain" }
lain = { path = "../../lain" }
ctrlc = "3.1"
14 changes: 6 additions & 8 deletions lain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"] }
Expand Down
14 changes: 6 additions & 8 deletions lain_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"] }
Expand Down

0 comments on commit dbcde17

Please sign in to comment.