diff --git a/bevy_lint/Cargo.toml b/bevy_lint/Cargo.toml index 64abb517..c86b50fa 100644 --- a/bevy_lint/Cargo.toml +++ b/bevy_lint/Cargo.toml @@ -1,15 +1,21 @@ [package] name = "bevy_lint" version = "0.1.0-dev" +authors = ["BD103"] edition = "2021" +description = "A collection of lints for the Bevy game engine" +repository = "https://github.com/TheBevyFlock/bevy_cli" license = "MIT OR Apache-2.0" +# While there are two binaries available, only `bevy_lint` is intended to be called by users. default-run = "bevy_lint" +# The main entrypoint for using Bevy lints. This program is intended to be called by users. [[bin]] name = "bevy_lint" path = "src/bin/main.rs" -# Integrates custom lints with `rustc`. +# The internal program called by `cargo` instead of `rustc`. While this is where the lints are +# registered, it is not intended to be called by users. [[bin]] name = "bevy_lint_driver" path = "src/bin/driver.rs"