2020-08-29 09:08:51 +09:00
|
|
|
[package]
|
|
|
|
name = "bevy_utils"
|
2021-04-06 18:48:48 +00:00
|
|
|
version = "0.5.0"
|
2020-08-29 09:08:51 +09:00
|
|
|
edition = "2018"
|
2020-09-11 03:54:24 +08:00
|
|
|
authors = [
|
|
|
|
"Bevy Contributors <bevyengine@gmail.com>",
|
|
|
|
"Carter Anderson <mcanders1@gmail.com>",
|
|
|
|
]
|
2020-08-29 09:08:51 +09:00
|
|
|
description = "A collection of utils for Bevy Engine"
|
|
|
|
homepage = "https://bevyengine.org"
|
|
|
|
repository = "https://github.com/bevyengine/bevy"
|
2021-07-23 21:11:51 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2020-08-29 09:08:51 +09:00
|
|
|
keywords = ["bevy"]
|
|
|
|
|
|
|
|
[dependencies]
|
2021-04-21 23:46:54 +00:00
|
|
|
bevy_derive = { path = "../bevy_derive", version = "0.5.0" }
|
2021-02-01 13:29:54 -08:00
|
|
|
ahash = "0.7.0"
|
2020-11-12 17:23:57 -08:00
|
|
|
tracing = {version = "0.1", features = ["release_max_level_info"]}
|
2020-11-22 01:38:24 +01:00
|
|
|
instant = { version = "0.1", features = ["wasm-bindgen"] }
|
2020-11-27 16:39:59 -08:00
|
|
|
uuid = { version = "0.8", features = ["v4", "serde"] }
|
2020-10-22 00:55:35 +02:00
|
|
|
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
|
|
getrandom = {version = "0.2.0", features = ["js"]}
|
2020-11-27 16:39:59 -08:00
|
|
|
uuid = { version = "0.8", features = ["wasm-bindgen"] }
|