-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
42 changed files
with
127 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cargo-dylint" | ||
version = "2.0.12" | ||
version = "2.0.13" | ||
authors = ["Samuel E. Moelius III <[email protected]>"] | ||
description = "A tool for running Rust lints from dynamic libraries" | ||
edition = "2021" | ||
|
@@ -12,8 +12,8 @@ anyhow = "1.0.65" | |
clap = { version = "4.0.9", features = ["cargo", "derive"] } | ||
env_logger = "0.9.1" | ||
|
||
dylint = { version = "=2.0.12", path = "../dylint", features = ["package_options"] } | ||
dylint_internal = { version = "=2.0.12", path = "../internal" } | ||
dylint = { version = "=2.0.13", path = "../dylint", features = ["package_options"] } | ||
dylint_internal = { version = "=2.0.13", path = "../internal" } | ||
|
||
[dev-dependencies] | ||
assert_cmd = "2.0.4" | ||
|
@@ -29,4 +29,4 @@ tempfile = "3.3.0" | |
test-log = "0.2.11" | ||
walkdir = "2.3.2" | ||
|
||
dylint_internal = { version = "=2.0.12", path = "../internal", features = ["testing"] } | ||
dylint_internal = { version = "=2.0.13", path = "../internal", features = ["testing"] } |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "dylint_driver" | ||
version = "2.0.12" | ||
version = "2.0.13" | ||
authors = ["Samuel E. Moelius III <[email protected]>"] | ||
description = "Dylint driver library" | ||
edition = "2021" | ||
|
@@ -14,7 +14,7 @@ log = "0.4.17" | |
rustversion = "1.0.9" | ||
serde_json = "1.0.85" | ||
|
||
dylint_internal = { version = "=2.0.12", path = "../internal", features = ["rustup"] } | ||
dylint_internal = { version = "=2.0.13", path = "../internal", features = ["rustup"] } | ||
|
||
[workspace] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "dylint-link" | ||
version = "2.0.12" | ||
version = "2.0.13" | ||
authors = ["Samuel E. Moelius III <[email protected]>"] | ||
description = "A wrapper around Rust's default linker to help create Dyling libraries" | ||
edition = "2021" | ||
|
@@ -13,18 +13,18 @@ env_logger = "0.9.1" | |
if_chain = "1.0.2" | ||
toml_edit = "0.14.4" | ||
|
||
dylint_internal = { version = "=2.0.12", path = "../internal", features = ["cargo"] } | ||
dylint_internal = { version = "=2.0.13", path = "../internal", features = ["cargo"] } | ||
|
||
[build-dependencies] | ||
dylint_internal = { version = "=2.0.12", path = "../internal" } | ||
dylint_internal = { version = "=2.0.13", path = "../internal" } | ||
|
||
[dev-dependencies] | ||
assert_cmd = "2.0.4" | ||
predicates = "2.1.1" | ||
tempfile = "3.3.0" | ||
test-log = "0.2.11" | ||
|
||
dylint_internal = { version = "=2.0.12", path = "../internal", features = ["packaging"] } | ||
dylint_internal = { version = "=2.0.13", path = "../internal", features = ["packaging"] } | ||
|
||
[target.'cfg(target_os = "windows")'.dependencies] | ||
cc = "1.0.73" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "dylint" | ||
version = "2.0.12" | ||
version = "2.0.13" | ||
authors = ["Samuel E. Moelius III <[email protected]>"] | ||
description = "A tool for running Rust lints from dynamic libraries" | ||
edition = "2021" | ||
|
@@ -28,17 +28,17 @@ serde_json = "1.0.85" | |
tempfile = "3.3.0" | ||
walkdir = "2.3.2" | ||
|
||
dylint_internal = { version = "=2.0.12", path = "../internal", features = ["git", "packaging", "rustup", "sed"] } | ||
dylint_internal = { version = "=2.0.13", path = "../internal", features = ["git", "packaging", "rustup", "sed"] } | ||
|
||
[build-dependencies] | ||
dylint_internal = { version = "=2.0.12", path = "../internal", features = ["cargo"] } | ||
dylint_internal = { version = "=2.0.13", path = "../internal", features = ["cargo"] } | ||
|
||
[dev-dependencies] | ||
env_logger = "0.9.1" | ||
lazy_static = "1.4.0" | ||
test-log = "0.2.11" | ||
|
||
dylint_internal = { version = "=2.0.12", path = "../internal", features = ["examples"] } | ||
dylint_internal = { version = "=2.0.13", path = "../internal", features = ["examples"] } | ||
|
||
[features] | ||
default = ["metadata"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
[package] | ||
name = "examples" | ||
version = "2.0.12" | ||
version = "2.0.13" | ||
description = "A dummy package for testing the example Dylint libraries" | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
publish = false | ||
|
||
[dependencies] | ||
dylint_internal = { version = "=2.0.12", path = "../internal", features = ["examples"] } | ||
dylint_internal = { version = "=2.0.13", path = "../internal", features = ["examples"] } |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "crate_wide_allow" | ||
version = "2.0.12" | ||
version = "2.0.13" | ||
authors = ["Samuel E. Moelius III <[email protected]>"] | ||
description = "A lint to check for `#![allow(...)]` used at the crate level" | ||
edition = "2021" | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "env_cargo_path" | ||
version = "2.0.12" | ||
version = "2.0.13" | ||
authors = ["Samuel E. Moelius III <[email protected]>"] | ||
description = "A lint to check for `env!` applied to Cargo environment variables containing paths" | ||
edition = "2021" | ||
|
Oops, something went wrong.