Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/crates/bevy_settings/Cargo.toml
30611 views
1
[package]
2
# crate was originally published as bevy-settings and can't be renamed on crates.io
3
name = "bevy-settings"
4
version = "0.19.0-dev"
5
edition = "2024"
6
description = "User settings framework for Bevy Engine"
7
homepage = "https://bevy.org"
8
repository = "https://github.com/bevyengine/bevy"
9
license = "MIT OR Apache-2.0"
10
keywords = ["bevy"]
11
12
[dependencies]
13
# bevy
14
bevy_app = { path = "../bevy_app", version = "0.19.0-dev" }
15
bevy_ecs = { path = "../bevy_ecs", version = "0.19.0-dev" }
16
bevy_ecs_macros = { path = "../bevy_ecs/macros", version = "0.19.0-dev" }
17
bevy_log = { path = "../bevy_log", version = "0.19.0-dev" }
18
bevy_platform = { path = "../bevy_platform", version = "0.19.0-dev" }
19
bevy_reflect = { path = "../bevy_reflect", version = "0.19.0-dev" }
20
bevy_tasks = { path = "../bevy_tasks", version = "0.19.0-dev" }
21
bevy_time = { path = "../bevy_time", version = "0.19.0-dev" }
22
23
serde = "1.0.217"
24
thiserror = "2.0.18"
25
toml = { version = "1.1.0" }
26
27
[target.'cfg(target_arch = "wasm32")'.dependencies]
28
web-sys = { version = "0.3", default-features = false, features = [
29
"Window",
30
"Storage",
31
] }
32
33
[features]
34
default = []
35
36
[lints]
37
workspace = true
38
39
[package.metadata.docs.rs]
40
rustdoc-args = ["-Zunstable-options", "--generate-link-to-definition"]
41
all-features = true
42
43