-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
56 lines (48 loc) · 1.55 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
55
56
[package]
name = "kludgine"
version = "0.6.1"
edition = "2021"
description = "A wgpu-powered 2d graphics library with optional windowing support"
readme = "./README.md"
license = "MIT OR Apache-2.0"
keywords = ["gamedev", "graphics", "wgpu"]
categories = ["graphics", "rendering::engine", "game-engines"]
repository = "https://github.com/khonsulabs/kludgine"
rust-version = "1.70.0"
[features]
default = ["app", "image", "cosmic-text"]
app = ["dep:appit"]
[dependencies]
appit = { version = "0.1.1", optional = true }
wgpu = { version = "0.18.0", features = ["expose-ids"] }
pollster = "0.3.0"
bytemuck = { version = "1.13.1", features = ["derive"] }
lyon_tessellation = "1.0.1"
image = { version = "0.24.6", optional = true, default-features = false }
cosmic-text = { version = "0.10.0", optional = true }
alot = "0.3.0"
ahash = { version = "0.8.3", default-features = false }
etagere = "0.2.8"
figures = { version = "0.2.0", features = [
"wgpu",
"winit",
"bytemuck",
"euclid",
] }
smallvec = "1.11.0"
intentional = "0.1.1"
unicode-bidi = "0.3.13"
justjson = "0.3.0"
[target.'cfg(target_arch = "wasm32")'.dependencies.wgpu]
version = "0.18.0"
features = ["webgl"]
[dev-dependencies]
image = { version = "0.24.6", features = ["png"] }
# [patch.crates-io]
# intentional = { path = "../intentional" }
# [patch."https://github.com/khonsulabs/appit"]
# appit = { path = "../appit" }
# [patch."https://github.com/khonsulabs/figures"]
# figures = { path = "../figures" }
# [patch."https://github.com/khonsulabs/shelf-packer"]
# shelf-packer = { path = "../shelf-packer" }