-
Notifications
You must be signed in to change notification settings - Fork 21
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
50 changed files
with
126 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.4.4" | ||
version = "2.5.0" | ||
authors = ["Samuel E. Moelius III <[email protected]>"] | ||
description = "A tool for running Rust lints from dynamic libraries" | ||
edition = "2021" | ||
|
@@ -13,8 +13,8 @@ anyhow = { version = "1.0", features = ["backtrace"] } | |
clap = { version = "4.4", features = ["cargo", "derive", "wrap_help"] } | ||
env_logger = "0.10" | ||
|
||
dylint = { version = "=2.4.4", path = "../dylint", features = ["package_options"] } | ||
dylint_internal = { version = "=2.4.4", path = "../internal" } | ||
dylint = { version = "=2.5.0", path = "../dylint", features = ["package_options"] } | ||
dylint_internal = { version = "=2.5.0", path = "../internal" } | ||
|
||
[dev-dependencies] | ||
assert_cmd = "2.0" | ||
|
@@ -32,4 +32,4 @@ similar-asserts = "1.5" | |
tempfile = "3.8" | ||
walkdir = "2.4" | ||
|
||
dylint_internal = { version = "=2.4.4", path = "../internal", features = ["testing"] } | ||
dylint_internal = { version = "=2.5.0", 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.4.4" | ||
version = "2.5.0" | ||
authors = ["Samuel E. Moelius III <[email protected]>"] | ||
description = "Dylint driver library" | ||
edition = "2021" | ||
|
@@ -15,7 +15,7 @@ log = "0.4" | |
rustversion = "1.0" | ||
serde_json = "1.0" | ||
|
||
dylint_internal = { version = "=2.4.4", path = "../internal", features = ["rustup"] } | ||
dylint_internal = { version = "=2.5.0", 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.4.4" | ||
version = "2.5.0" | ||
authors = ["Samuel E. Moelius III <[email protected]>"] | ||
description = "A wrapper around Rust's default linker to help create Dyling libraries" | ||
edition = "2021" | ||
|
@@ -13,17 +13,17 @@ env_logger = "0.10" | |
if_chain = "1.0" | ||
toml_edit = "0.20" | ||
|
||
dylint_internal = { version = "=2.4.4", path = "../internal", features = ["cargo"] } | ||
dylint_internal = { version = "=2.5.0", path = "../internal", features = ["cargo"] } | ||
|
||
[build-dependencies] | ||
dylint_internal = { version = "=2.4.4", path = "../internal" } | ||
dylint_internal = { version = "=2.5.0", path = "../internal" } | ||
|
||
[dev-dependencies] | ||
assert_cmd = "2.0" | ||
predicates = "3.0" | ||
tempfile = "3.8" | ||
|
||
dylint_internal = { version = "=2.4.4", path = "../internal", features = ["packaging"] } | ||
dylint_internal = { version = "=2.5.0", path = "../internal", features = ["packaging"] } | ||
|
||
[target.'cfg(target_os = "windows")'.dependencies] | ||
cc = "1.0" |
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.4.4" | ||
version = "2.5.0" | ||
authors = ["Samuel E. Moelius III <[email protected]>"] | ||
description = "A tool for running Rust lints from dynamic libraries" | ||
edition = "2021" | ||
|
@@ -36,22 +36,22 @@ curl-sys = { version = "0.4", features = [ | |
"force-system-lib-on-osx", | ||
], optional = true } | ||
|
||
dylint_internal = { version = "=2.4.4", path = "../internal", features = [ | ||
dylint_internal = { version = "=2.5.0", path = "../internal", features = [ | ||
"git", | ||
"packaging", | ||
"rustup", | ||
"sed", | ||
] } | ||
|
||
[build-dependencies] | ||
dylint_internal = { version = "=2.4.4", path = "../internal", features = [ | ||
dylint_internal = { version = "=2.5.0", path = "../internal", features = [ | ||
"cargo", | ||
] } | ||
|
||
[dev-dependencies] | ||
env_logger = "0.10" | ||
|
||
dylint_internal = { version = "=2.4.4", path = "../internal", features = [ | ||
dylint_internal = { version = "=2.5.0", path = "../internal", features = [ | ||
"examples", | ||
] } | ||
|
||
|
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 = "derive_opportunity" | ||
version = "2.4.4" | ||
version = "2.5.0" | ||
authors = ["Samuel E. Moelius III <[email protected]>"] | ||
description = "A lint to check for traits that could be derived" | ||
edition = "2021" | ||
|
10 changes: 5 additions & 5 deletions
10
examples/experimental/missing_doc_comment_openai/Cargo.lock
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 = "missing_doc_comment_openai" | ||
version = "2.4.4" | ||
version = "2.5.0" | ||
authors = ["Samuel E. Moelius III <[email protected]>"] | ||
description = "A lint that suggests doc comments using OpenAI" | ||
edition = "2021" | ||
|
Oops, something went wrong.