-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (44 loc) · 1.03 KB
/
Cargo.toml
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
52
53
54
[package]
name = "bevy_easy_portals"
version = "0.4.0"
edition = "2021"
description = "Bevy plugin for easy-to-use portals."
keywords = ["bevy", "gamedev"]
categories = ["game-development"]
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/chompaa/bevy_easy_portals"
documentation = "https://docs.rs/bevy_easy_portals"
exclude = [".github"]
[dependencies]
uuid = { version = "1.11.0", features = ["v4"], optional = true }
[dependencies.bevy]
version = "0.15.1"
default-features = false
features = [
"bevy_core_pipeline",
"bevy_image",
"bevy_pbr",
"bevy_render",
"bevy_window",
]
[dev-dependencies.bevy]
version = "0.15.1"
[features]
default = []
gizmos = ["bevy/bevy_gizmos"]
picking = ["bevy/bevy_picking", "dep:uuid"]
[lints.clippy]
too_many_arguments = "allow"
type_complexity = "allow"
[package.metadata.docs.rs]
all-features = true
[[example]]
name = "basic"
[[example]]
name = "mesh_picking"
required-features = ["picking"]
[[example]]
name = "mirror"
[[example]]
name = "teleport"