mirror of
https://github.com/bevyengine/bevy
synced 2025-01-10 04:08:55 +00:00
f77618eccb
# Objective - Some workspace members do not inherit the global lints. ## Solution - Add a `[lints]` entry for all files returned by `rg --files-without-match -F "[lints]" **/Cargo.toml`, except the compile failure tests since these aren't part of the workspace. - Add some docstrings where needed. --------- Co-authored-by: Alice Cecile <alice.i.cecile@gmail.com>
22 lines
454 B
TOML
22 lines
454 B
TOML
[package]
|
|
name = "bevy_gizmos_macros"
|
|
version = "0.13.0"
|
|
edition = "2021"
|
|
description = "Derive implementations for bevy_gizmos"
|
|
homepage = "https://bevyengine.org"
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["bevy"]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.13.0" }
|
|
|
|
syn = "2.0"
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|