-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (45 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
51 lines (45 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "bevy_tilemap"
version = "0.1.0"
edition = "2024"
rust-version = "1.85.0"
[dependencies]
bevy = { version = "0.16", default-features = false, features = [
"bevy_core_pipeline",
"bevy_render",
"bevy_asset",
"bevy_sprite",
] }
bytemuck = "1.22.0"
derive_more = { version = "1", default-features = false, features = ["from"] }
glob = "0.3.2"
ron = "0.10.1"
serde = "1.0.219"
thiserror = "2.0.12"
tracing = "0.1.41"
[dev-dependencies]
bevy = { version = "0.16", features = [
"bevy_remote",
"bevy_dev_tools",
"basis-universal",
] }
bevy_pancam = "0.18"
rand = "0.9.0"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "isometric"
path = "examples/isometric.rs"
[package.metadata.docs.rs]
rustc-args = ["--cfg", "docsrs_dep"]
rustdoc-args = [
"-Zunstable-options",
"--generate-link-to-definition",
"--html-after-content",
"docs-rs/trait-tags.html",
]
all-features = true
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(docsrs_dep)'] }