# Objective - update for Edition 2021 ## Solution - remove the `resolver = "2"` - update for https://doc.rust-lang.org/edition-guide/rust-2021/reserving-syntax.html by adding a few ` `
25 lines
796 B
TOML
25 lines
796 B
TOML
[package]
|
|
name = "bevy_utils"
|
|
version = "0.5.0"
|
|
edition = "2021"
|
|
authors = [
|
|
"Bevy Contributors <bevyengine@gmail.com>",
|
|
"Carter Anderson <mcanders1@gmail.com>",
|
|
]
|
|
description = "A collection of utils for Bevy Engine"
|
|
homepage = "https://bevyengine.org"
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["bevy"]
|
|
|
|
[dependencies]
|
|
bevy_derive = { path = "../bevy_derive", version = "0.5.0" }
|
|
ahash = "0.7.0"
|
|
tracing = {version = "0.1", features = ["release_max_level_info"]}
|
|
instant = { version = "0.1", features = ["wasm-bindgen"] }
|
|
uuid = { version = "0.8", features = ["v4", "serde"] }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
getrandom = {version = "0.2.0", features = ["js"]}
|
|
uuid = { version = "0.8", features = ["wasm-bindgen"] }
|