Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Using `curl`,

```shell
# make sure to adjust the target and version (you may also want to pin to a specific version)
curl -sSL https://github.com/psastras/sarif-rs/releases/download/shellcheck-sarif-v0.6.6/shellcheck-sarif-x86_64-unknown-linux-gnu -o shellcheck-sarif
curl -sSL https://github.com/psastras/sarif-rs/releases/download/shellcheck-sarif-v0.7.0/shellcheck-sarif-x86_64-unknown-linux-gnu -o shellcheck-sarif
```

### Fedora Linux
Expand Down
8 changes: 5 additions & 3 deletions clang-tidy-sarif/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "clang-tidy-sarif"
version = "0.6.6"
version = "0.7.0"
authors = ["Paul Sastrasinh <psastras@gmail.com>"]
edition = "2018"
description = "Convert clang-tidy output to SARIF"
license = "MIT"
readme = "README.md"
keywords = ["sarif", "clang-tidy", "clang", "lint", "cli"]
categories = ["command-line-utilities"]
homepage = "https://psastras.github.io/sarif-rs/"
homepage = "https://psastras.github.io/sarif-rs/"
documentation = "https://docs.rs/clang_tidy_sarif"
repository = "https://github.com/psastras/sarif-rs"

Expand All @@ -21,7 +21,9 @@ path = "src/bin.rs"

[dependencies]
anyhow = "1.0.94"
serde-sarif = { path = "../serde-sarif", version = "0.6.6", features = ["clang-tidy-converters"] }
serde-sarif = { path = "../serde-sarif", version = "0.7.0", features = [
"clang-tidy-converters",
] }
clap = { version = "4.5.23", features = ["derive"] }
duct = "0.13.7"

Expand Down
2 changes: 1 addition & 1 deletion clang-tidy-sarif/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ or downloaded directly from Github Releases

```shell
# make sure to adjust the target and version (you may also want to pin to a specific version)
curl -sSL https://github.com/psastras/sarif-rs/releases/download/clang-tidy-sarif-v0.6.6/clang-tidy-sarif-x86_64-unknown-linux-gnu -o clang-tidy-sarif
curl -sSL https://github.com/psastras/sarif-rs/releases/download/clang-tidy-sarif-v0.7.0/clang-tidy-sarif-x86_64-unknown-linux-gnu -o clang-tidy-sarif
```

### Fedora Linux
Expand Down
2 changes: 1 addition & 1 deletion clang-tidy-sarif/src/bin.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/clang-tidy-sarif/0.6.6")]
#![doc(html_root_url = "https://docs.rs/clang-tidy-sarif/0.7.0")]

//! This crate provides a command line tool to convert `clang-tidy` diagnostic
//! output into SARIF.
Expand Down
8 changes: 5 additions & 3 deletions clippy-sarif/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "clippy-sarif"
version = "0.6.6"
version = "0.7.0"
authors = ["Paul Sastrasinh <psastras@gmail.com>"]
edition = "2018"
description = "Convert clippy output to SARIF"
license = "MIT"
readme = "README.md"
keywords = ["sarif", "clippy", "cli"]
categories = ["command-line-utilities"]
homepage = "https://psastras.github.io/sarif-rs/"
homepage = "https://psastras.github.io/sarif-rs/"
documentation = "https://docs.rs/clippy_sarif"
repository = "https://github.com/psastras/sarif-rs"

Expand All @@ -21,7 +21,9 @@ path = "src/bin.rs"

[dependencies]
anyhow = "1.0.94"
serde-sarif = { path = "../serde-sarif", version = "0.6.6", features = ["clippy-converters"] }
serde-sarif = { path = "../serde-sarif", version = "0.7.0", features = [
"clippy-converters",
] }
clap = { version = "4.5.23", features = ["derive"] }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion clippy-sarif/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ or downloaded directly from Github Releases

```shell
# make sure to adjust the target and version (you may also want to pin to a specific version)
curl -sSL https://github.com/psastras/sarif-rs/releases/download/clippy-sarif-v0.6.6/clippy-sarif-x86_64-unknown-linux-gnu -o clippy-sarif
curl -sSL https://github.com/psastras/sarif-rs/releases/download/clippy-sarif-v0.7.0/clippy-sarif-x86_64-unknown-linux-gnu -o clippy-sarif
```

### Fedora Linux
Expand Down
2 changes: 1 addition & 1 deletion clippy-sarif/src/bin.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/clippy-sarif/0.6.6")]
#![doc(html_root_url = "https://docs.rs/clippy-sarif/0.7.0")]

//! This crate provides a command line tool to convert `cargo clippy` diagnostic
//! output into SARIF.
Expand Down
8 changes: 5 additions & 3 deletions hadolint-sarif/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "hadolint-sarif"
version = "0.6.6"
version = "0.7.0"
authors = ["Paul Sastrasinh <psastras@gmail.com>"]
edition = "2018"
description = "Convert hadolint output to SARIF"
license = "MIT"
readme = "README.md"
keywords = ["sarif", "hadolint", "docker", "cli"]
categories = ["command-line-utilities"]
homepage = "https://psastras.github.io/sarif-rs/"
homepage = "https://psastras.github.io/sarif-rs/"
documentation = "https://docs.rs/hadolint_sarif"
repository = "https://github.com/psastras/sarif-rs"

Expand All @@ -21,7 +21,9 @@ path = "src/bin.rs"

[dependencies]
anyhow = "1.0.94"
serde-sarif = { path = "../serde-sarif", version = "0.6.6", features = ["hadolint-converters"] }
serde-sarif = { path = "../serde-sarif", version = "0.7.0", features = [
"hadolint-converters",
] }
clap = { version = "4.5.23", features = ["derive"] }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion hadolint-sarif/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ or downloaded directly from Github Releases

```shell
# make sure to adjust the target and version (you may also want to pin to a specific version)
curl -sSL https://github.com/psastras/sarif-rs/releases/download/shellcheck-sarif-v0.6.6/hadolint-sarif-x86_64-unknown-linux-gnu -o hadolint-sarif
curl -sSL https://github.com/psastras/sarif-rs/releases/download/shellcheck-sarif-v0.7.0/hadolint-sarif-x86_64-unknown-linux-gnu -o hadolint-sarif
```

### Fedora Linux
Expand Down
2 changes: 1 addition & 1 deletion hadolint-sarif/src/bin.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/hadolint-sarif/0.6.6")]
#![doc(html_root_url = "https://docs.rs/hadolint-sarif/0.7.0")]

//! This crate provides a command line tool to convert `hadolint` diagnostic
//! output into SARIF.
Expand Down
6 changes: 3 additions & 3 deletions sarif-fmt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "sarif-fmt"
version = "0.6.6"
version = "0.7.0"
authors = ["Paul Sastrasinh <psastras@gmail.com>"]
edition = "2018"
description = "View (pretty print) SARIF files in terminal"
license = "MIT"
readme = "README.md"
keywords = ["sarif", "fmt", "cli", "terminal"]
categories = ["command-line-utilities"]
homepage = "https://psastras.github.io/sarif-rs/"
homepage = "https://psastras.github.io/sarif-rs/"
documentation = "https://docs.rs/clippy_sarif"
repository = "https://github.com/psastras/sarif-rs"

Expand All @@ -22,7 +22,7 @@ path = "src/bin.rs"
[dependencies]
anyhow = "1.0.94"
codespan-reporting = "0.11.1"
serde-sarif = { path = "../serde-sarif", version = "0.6.6" }
serde-sarif = { path = "../serde-sarif", version = "0.7.0" }
serde_json = "1.0.133"
clap = { version = "4.5.23", features = ["derive"] }

Expand Down
2 changes: 1 addition & 1 deletion sarif-fmt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ or downloaded directly from Github Releases

```shell
# make sure to adjust the target and version (you may also want to pin to a specific version)
curl -sSL https://github.com/psastras/sarif-rs/releases/download/sarif-fmt-v0.6.6/sarif-fmt-x86_64-unknown-linux-gnu -o sarif-fmt
curl -sSL https://github.com/psastras/sarif-rs/releases/download/sarif-fmt-v0.7.0/sarif-fmt-x86_64-unknown-linux-gnu -o sarif-fmt
```

### Fedora Linux
Expand Down
2 changes: 1 addition & 1 deletion sarif-fmt/src/bin.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/sarif-fmt/0.6.6")]
#![doc(html_root_url = "https://docs.rs/sarif-fmt/0.7.0")]
#![recursion_limit = "256"]
//! This crate provides a command line tool to pretty print SARIF files to
//! easy human readable output.
Expand Down
6 changes: 3 additions & 3 deletions serde-sarif/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serde-sarif"
version = "0.6.6"
version = "0.7.0"
authors = ["Paul Sastrasinh <psastras@gmail.com>"]
edition = "2018"
description = "Serde serialization for SARIF files"
Expand All @@ -9,7 +9,7 @@ readme = "README.md"
keywords = ["sarif", "serde", "serialization"]
categories = ["encoding"]
build = "build.rs"
homepage = "https://psastras.github.io/sarif-rs/"
homepage = "https://psastras.github.io/sarif-rs/"
documentation = "https://docs.rs/serde_sarif"
repository = "https://github.com/psastras/sarif-rs"

Expand All @@ -29,7 +29,7 @@ clang-tidy-converters = ["regex", "anyhow"]
[dependencies]
anyhow = { version = "1.0.94", optional = true }
cargo_metadata = { version = "0.19.1", optional = true }
regex = { version = "1.11.1", optional = true }
regex = { version = "1.11.1", optional = true }
serde = "1.0.216"
serde_json = "1.0.133"
strum = "0.26"
Expand Down
2 changes: 1 addition & 1 deletion serde-sarif/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/serde-sarif/0.6.6")]
#![doc(html_root_url = "https://docs.rs/serde-sarif/0.7.0")]

//! This crate provides a type safe [serde](https://serde.rs/) compatible
//! [SARIF](https://sarifweb.azurewebsites.net/) structure. It is intended
Expand Down
8 changes: 5 additions & 3 deletions shellcheck-sarif/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "shellcheck-sarif"
version = "0.6.6"
version = "0.7.0"
authors = ["Paul Sastrasinh <psastras@gmail.com>"]
edition = "2018"
description = "Convert shellcheck output to SARIF"
license = "MIT"
readme = "README.md"
keywords = ["sarif", "shellcheck", "shell", "cli"]
categories = ["command-line-utilities"]
homepage = "https://psastras.github.io/sarif-rs/"
homepage = "https://psastras.github.io/sarif-rs/"
documentation = "https://docs.rs/shellcheck_sarif"
repository = "https://github.com/psastras/sarif-rs"

Expand All @@ -21,7 +21,9 @@ path = "src/bin.rs"

[dependencies]
anyhow = "1.0.94"
serde-sarif = { path = "../serde-sarif", version = "0.6.6", features = ["shellcheck-converters"] }
serde-sarif = { path = "../serde-sarif", version = "0.7.0", features = [
"shellcheck-converters",
] }
clap = { version = "4.5.23", features = ["derive"] }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion shellcheck-sarif/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ or downloaded directly from Github Releases

```shell
# make sure to adjust the target and version (you may also want to pin to a specific version)
curl -sSL https://github.com/psastras/sarif-rs/releases/download/shellcheck-sarif-v0.6.6/shellcheck-sarif-x86_64-unknown-linux-gnu -o shellcheck-sarif
curl -sSL https://github.com/psastras/sarif-rs/releases/download/shellcheck-sarif-v0.7.0/shellcheck-sarif-x86_64-unknown-linux-gnu -o shellcheck-sarif
```

### Fedora Linux
Expand Down
2 changes: 1 addition & 1 deletion shellcheck-sarif/src/bin.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/shellcheck-sarif/0.6.6")]
#![doc(html_root_url = "https://docs.rs/shellcheck-sarif/0.7.0")]

//! This crate provides a command line tool to convert `shellcheck` diagnostic
//! output into SARIF.
Expand Down
Loading