mirror of
https://github.com/bevyengine/bevy
synced 2024-12-11 22:02:34 +00:00
363bdf78dc
# Objective - Nightly checks where disabled because of a bug in Rust - Dependency checks are failing because of a new duplicate ## Solution - Now that https://github.com/rust-lang/rust/pull/92175 has been merged, re-enable nightly checks - Add the new duplicate dependency to the known list - Removed `Inflector` dependency as it's not used anymore Co-authored-by: François <8672791+mockersf@users.noreply.github.com>
18 lines
405 B
TOML
18 lines
405 B
TOML
[package]
|
|
name = "bevy_derive"
|
|
version = "0.5.0"
|
|
edition = "2021"
|
|
description = "Provides derive implementations for Bevy Engine"
|
|
homepage = "https://bevyengine.org"
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["bevy"]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.5.0" }
|
|
|
|
quote = "1.0"
|
|
syn = "1.0"
|