Skip to content

Commit

Permalink
feat: add Cargo.toml metadata and comments
Browse files Browse the repository at this point in the history
  • Loading branch information
BD103 committed Sep 30, 2024
1 parent 570d8ca commit ee44170
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion bevy_lint/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit ee44170

Please sign in to comment.