Skip to content

Commit

Permalink
New release, toml fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
faculerena committed Jan 2, 2024
1 parent 07f00a0 commit f14402b
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions apps/cargo-scout-audit/Cargo.lock

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

4 changes: 2 additions & 2 deletions apps/cargo-scout-audit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-scout-audit-soroban"
version = "0.2.1"
version = "0.2.2"
edition = "2021"
authors = [
"Agustin Aon <agustin.aon@coinfabrik.com>",
Expand Down Expand Up @@ -40,7 +40,7 @@ tempfile = "3.8"
regex = { version = "1.5", features = ["unicode"] }
serde_json = "1.0"

scout-audit-internal-soroban = { version = "=0.2.1", path = "../../scout-audit-internal", features = ["detector"] }
scout-audit-internal-soroban = { version = "=0.2.2", path = "../../scout-audit-internal", features = ["detector"] }

[dev-dependencies]
colored = "2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion apps/cargo-scout-audit/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ fn main() {

let cli = Cli::parse();
match cli.subcmd {
CargoSubCommand::ScoutAudit(opts) => run_scout(opts).unwrap(),
CargoSubCommand::ScoutAuditSoroban(opts) => run_scout(opts).unwrap(),
}
}
2 changes: 1 addition & 1 deletion apps/cargo-scout-audit/src/startup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pub struct Cli {

#[derive(Debug, Subcommand)]
pub enum CargoSubCommand {
ScoutAudit(Scout),
ScoutAuditSoroban(Scout),
}
#[derive(Debug, Default, Clone, ValueEnum, PartialEq)]
pub enum OutputFormat {
Expand Down
2 changes: 1 addition & 1 deletion scout-audit-clippy-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scout-audit-clippy-utils-soroban"
version = "0.2.1"
version = "0.2.2"
edition = "2021"
license = "MIT"
repository = "https://github.com/rust-lang/rust-clippy"
Expand Down
4 changes: 2 additions & 2 deletions scout-audit-internal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scout-audit-internal-soroban"
version = "0.2.1"
version = "0.2.2"
edition = "2021"
authors = [
"José García Crosta <jose.garcia.crosta@coinfabrik.com>",
Expand Down Expand Up @@ -28,4 +28,4 @@ lint_helper = [
[dependencies]
strum = { version = "0.25", features = ["derive"], optional = true }
serde_json = { version = "1.0", optional = true }
scout-audit-clippy-utils = { version = "=0.2.1", path = "../scout-audit-clippy-utils", optional = true }
scout-audit-clippy-utils = { version = "=0.2.2", path = "../scout-audit-clippy-utils", optional = true }
2 changes: 1 addition & 1 deletion soroban_detectors/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ dylint_linting = "2.1.5"
dylint_testing = "2.1.5"
if_chain = "1.0.2"

scout-audit-clippy-utils = { version = "=0.2.1", path = "../scout-audit-clippy-utils" }
scout-audit-clippy-utils = { version = "=0.2.2", path = "../scout-audit-clippy-utils" }
scout-audit-internal = { path = "../scout-audit-internal", features = ["detector", "lint_helper"] }

0 comments on commit f14402b

Please sign in to comment.