-
Notifications
You must be signed in to change notification settings - Fork 42
/
Cargo.toml
39 lines (37 loc) · 1007 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]
edition = "2021"
name = "bevy_polyline"
version = "0.10.0"
description = "Polyline Rendering for Bevy"
license = "MIT OR Apache-2.0"
repository = "https://github.com/ForesightMiningSoftwareCorporation/bevy_polyline"
homepage = "https://github.com/ForesightMiningSoftwareCorporation/bevy_polyline"
documentation = "https://docs.rs/bevy_polyline"
readme = "README.md"
keywords = ["bevy", "gamedev", "polyline", "graphics"]
categories = ["rendering", "game-development"]
authors = [
"Foresight Mining Software Corporation",
"Jonas Matser",
"Aevyrie Roessler",
]
[dependencies]
bitflags = "2.3"
bevy = { version = "0.14", default-features = false, features = [
"bevy_core_pipeline",
"bevy_render",
"bevy_asset",
] }
bytemuck = "1.16.1"
[dev-dependencies]
lazy_static = "1.4.0"
rand = "0.8.4"
ringbuffer = "0.15"
bevy = { version = "0.14", default-features = false, features = [
"bevy_winit",
"bevy_pbr",
"x11",
"tonemapping_luts",
"ktx2",
"zstd",
] }