-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
39 lines (35 loc) · 911 Bytes
/
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
[package]
name = "bevy_mod_rounded_box"
version = "0.8.0"
authors = ["Robin KAY <komadori@gekkou.co.uk>"]
edition = "2021"
license = "MIT OR Apache-2.0"
description = "A rounded box shape for Bevy."
readme = "README.md"
homepage = "https://github.com/komadori/bevy_mod_rounded_box/"
repository = "https://github.com/komadori/bevy_mod_rounded_box/"
keywords = ["gamedev", "bevy", "rounded", "box", "cube"]
categories = ["game-engines", "rendering"]
[dependencies]
bevy = { version = "0.14", default-features = false, features = [
"bevy_asset",
"bevy_render",
] }
[features]
uvf = []
default = ["uvf"]
[dev-dependencies]
bevy = { version = "0.14", default-features = false, features = [
"bevy_core_pipeline",
"bevy_pbr",
"bevy_winit",
"tonemapping_luts",
"x11",
"png",
"ktx2",
"zstd",
] }
[[example]]
name = "cube"
path = "examples/cube.rs"
required-features = ["uvf"]