Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/crates/bevy_derive/Cargo.toml
6595 views
1
[package]
2
name = "bevy_derive"
3
version = "0.17.0-dev"
4
edition = "2024"
5
description = "Provides derive implementations for Bevy Engine"
6
homepage = "https://bevy.org"
7
repository = "https://github.com/bevyengine/bevy"
8
license = "MIT OR Apache-2.0"
9
keywords = ["bevy"]
10
11
[lib]
12
proc-macro = true
13
14
[dependencies]
15
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.17.0-dev" }
16
17
quote = "1.0"
18
syn = { version = "2.0", features = ["full"] }
19
20
[lints]
21
workspace = true
22
23
[package.metadata.docs.rs]
24
rustdoc-args = ["-Zunstable-options", "--generate-link-to-definition"]
25
all-features = true
26
27