Skip to content

Commit

Permalink
version updates in cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
RazMag committed Oct 26, 2023
1 parent 16ce7a0 commit 4607661
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cherrybomb"
version = "1.0.0"
version = "1.0.1"
authors = ["BLST Security"]
description = """
Cherrybomb is a CLI tool that helps you avoid undefined user behavior by validating your API specifications.
Expand All @@ -24,8 +24,7 @@ clap = { version = "4.0.29", features = ["derive"] }
const_format = "0.2.30"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
#cherrybomb-engine = "^0.1"
cherrybomb-engine = {path = "./cherrybomb-engine"}
cherrybomb-engine = { version = "^0.1", path = "./cherrybomb-engine"}
serde_yaml = "^0.9.0"
uuid = {version = "1.2.2", features = ["v4"] }
dirs = "4.0.0"
Expand Down
4 changes: 2 additions & 2 deletions cherrybomb-engine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cherrybomb-engine"
version = "0.1.1"
version = "0.1.2"
authors = ["BLST Security"]
description = """
Cherrybomb enging crate
Expand All @@ -13,7 +13,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
cherrybomb-oas = "^0.1"
cherrybomb-oas = { version = "^0.1", path = "../cherrybomb-oas" }
anyhow = "1.0.66"
thiserror = "1.0.37"
serde_json = "^1.0"
Expand Down
2 changes: 1 addition & 1 deletion cherrybomb-oas/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cherrybomb-oas"
version = "0.1.1"
version = "0.1.2"
authors = ["BLST Security"]
description = """
Cherrybomb OpenAPI Specification (OAS) struct and functions
Expand Down

0 comments on commit 4607661

Please sign in to comment.