mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
Do not bundle the assets from wasm example in the crate (#4895)
# Objective - Fix #4881 ## Solution - Do not bundle the assets from wasm example in the crate; tested with `cargo package` to check the produced crate
This commit is contained in:
parent
5a1866c13d
commit
f2b53de4aa
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ version = "0.8.0-dev"
|
|||
edition = "2021"
|
||||
categories = ["game-engines", "graphics", "gui", "rendering"]
|
||||
description = "A refreshingly simple data-driven game engine and app framework"
|
||||
exclude = ["assets/**/*", "tools/**/*", ".github/**/*", "crates/**/*"]
|
||||
exclude = ["assets/", "tools/", ".github/", "crates/", "examples/wasm/assets/"]
|
||||
homepage = "https://bevyengine.org"
|
||||
keywords = ["game", "engine", "gamedev", "graphics", "bevy"]
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
|
Loading…
Reference in a new issue