-
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
13 changed files
with
20 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cargo-dylint" | ||
version = "0.1.3" | ||
version = "1.0.0" | ||
authors = ["Samuel E. Moelius III <[email protected]>"] | ||
description = "A tool for running Rust lints from dynamic libraries" | ||
edition = "2018" | ||
|
@@ -12,8 +12,8 @@ anyhow = "1.0.41" | |
clap = "3.0.0-beta.2" | ||
env_logger = "0.8.4" | ||
|
||
dylint = { version = "=0.1.3", path = "../dylint", features = ["dylint_driver_local"] } | ||
dylint_internal = { version = "=0.1.3", path = "../internal" } | ||
dylint = { version = "=1.0.0", path = "../dylint", features = ["dylint_driver_local"] } | ||
dylint_internal = { version = "=1.0.0", path = "../internal" } | ||
|
||
[dev-dependencies] | ||
assert_cmd = "1.0.5" | ||
|
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 = "0.1.3" | ||
version = "1.0.0" | ||
authors = ["Samuel E. Moelius III <[email protected]>"] | ||
description = "Dylint driver library" | ||
edition = "2018" | ||
|
@@ -13,6 +13,6 @@ libloading = "0.7.0" | |
log = "0.4.14" | ||
serde_json = "1.0.64" | ||
|
||
dylint_internal = { version = "=0.1.3", path = "../internal" } | ||
dylint_internal = { version = "=1.0.0", path = "../internal" } | ||
|
||
[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 = "0.1.3" | ||
version = "1.0.0" | ||
authors = ["Samuel E. Moelius III <[email protected]>"] | ||
description = "A wrapper around Rust's default linker to help create Dyling libraries" | ||
edition = "2018" | ||
|
@@ -12,4 +12,4 @@ anyhow = "1.0.41" | |
env_logger = "0.8.4" | ||
if_chain = "1.0.1" | ||
|
||
dylint_internal = { version = "=0.1.3", path = "../internal" } | ||
dylint_internal = { version = "=1.0.0", path = "../internal" } |
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 = "0.1.3" | ||
version = "1.0.0" | ||
authors = ["Samuel E. Moelius III <[email protected]>"] | ||
description = "A tool for running Rust lints from dynamic libraries" | ||
edition = "2018" | ||
|
@@ -23,7 +23,7 @@ serde_json = "1.0.64" | |
semver = "0.11.0" | ||
tempfile = "3.2.0" | ||
|
||
dylint_internal = { version = "=0.1.3", path = "../internal" } | ||
dylint_internal = { version = "=1.0.0", path = "../internal" } | ||
|
||
[dev-dependencies] | ||
env_logger = "0.8.4" | ||
|
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 = "allow_clippy" | ||
version = "0.1.3" | ||
version = "1.0.0" | ||
authors = ["Samuel E. Moelius III <[email protected]>"] | ||
description = "A tongue-in-cheek example of a Dylint library" | ||
edition = "2018" | ||
|
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 = "clippy" | ||
version = "0.1.3" | ||
version = "1.0.0" | ||
authors = ["Samuel E. Moelius III <[email protected]>"] | ||
description = "All of the Clippy lints as a Dylint library" | ||
edition = "2018" | ||
|
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_literal" | ||
version = "0.1.3" | ||
version = "1.0.0" | ||
authors = ["Samuel E. Moelius III <[email protected]>"] | ||
description = "A lint to check for environment variables referred to with string literals" | ||
edition = "2018" | ||
|
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 = "path_separator_in_string_literal" | ||
version = "0.1.3" | ||
version = "1.0.0" | ||
authors = ["Samuel E. Moelius III <[email protected]>"] | ||
description = "A lint to check for path separators in string literals" | ||
edition = "2018" | ||
|
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 = "question_mark_in_expression" | ||
version = "0.1.3" | ||
version = "1.0.0" | ||
authors = ["Samuel E. Moelius III <[email protected]>"] | ||
description = "A lint to check for the `?` operator in expressions" | ||
edition = "2018" | ||
|
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 = "try_io_result" | ||
version = "0.1.0" | ||
version = "1.0.0" | ||
authors = ["Samuel E. Moelius III <[email protected]>"] | ||
description = "A lint to check for the `?` operator applied to `std::io::Result`" | ||
edition = "2018" | ||
|
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_internal" | ||
version = "0.1.3" | ||
version = "1.0.0" | ||
authors = ["Samuel E. Moelius III <[email protected]>"] | ||
description = "Dylint internals" | ||
edition = "2018" | ||
|
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_linting" | ||
version = "0.1.3" | ||
version = "1.0.0" | ||
authors = ["Samuel E. Moelius III <[email protected]>"] | ||
description = "Utiltities for writing Dylint libraries" | ||
edition = "2018" | ||
|
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_testing" | ||
version = "0.1.3" | ||
version = "1.0.0" | ||
authors = ["Samuel E. Moelius III <[email protected]>"] | ||
description = "Utiltities for testing Dylint libraries" | ||
edition = "2018" | ||
|
@@ -18,8 +18,8 @@ regex = "1.5.4" | |
serde_json = "1.0.64" | ||
tempfile = "3.2.0" | ||
|
||
dylint = { version = "=0.1.3", path = "../../dylint", default-features = false } | ||
dylint_internal = { version = "=0.1.3", path = "../../internal" } | ||
dylint = { version = "=1.0.0", path = "../../dylint", default-features = false } | ||
dylint_internal = { version = "=1.0.0", path = "../../internal" } | ||
|
||
[features] | ||
default = [] | ||
|