-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 864 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (29 loc) · 864 Bytes
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
[package]
name = "notan_draw"
version.workspace = true
authors.workspace = true
edition.workspace = true
homepage.workspace = true
repository.workspace = true
license.workspace = true
readme = "README.md"
description = "Provides a simple 2D API for Notan"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log.workspace = true
notan_app.workspace = true
notan_graphics.workspace = true
notan_macro.workspace = true
notan_math.workspace = true
notan_glyph.workspace = true
notan_text.workspace = true
serde = { workspace = true, features = ["derive"] }
lyon = "1.0.1"
serde_json = "1.0.138"
[features]
glsl-to-spirv = [
"notan_macro/glsl-to-spirv",
"notan_glyph/glsl-to-spirv",
"notan_text/glsl-to-spirv",
]
shaderc = ["notan_macro/shaderc", "notan_glyph/shaderc", "notan_text/shaderc"]