-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
68 lines (59 loc) · 1.89 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
57
58
59
60
61
62
63
64
65
66
67
68
[package]
name = "kludgine"
version = "0.11.0"
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.76.0"
[features]
default = ["app", "image", "cosmic-text"]
app = ["dep:appit"]
plotters = ["dep:plotters", "dep:plotters-backend"]
[dependencies]
appit = { git = "https://github.com/khonsulabs/appit", optional = true, features = [
"rwh_06",
] }
wgpu = { version = "23.0.0" }
pollster = "0.4.0"
bytemuck = { version = "1.13.1", features = ["derive"] }
lyon_tessellation = "1.0.1"
image = { version = "0.25.1", optional = true, default-features = false }
cosmic-text = { version = "0.12.0", optional = true }
alot = "0.3.0"
ahash = "0.8.3"
etagere = "0.2.8"
figures = { version = "0.5.0", features = [
"wgpu",
"winit",
"bytemuck",
"euclid",
] }
smallvec = "1.11.0"
intentional = "0.1.1"
unicode-bidi = "0.3.13"
justjson = "0.3.0"
palette = "0.7.3"
plotters = { version = "0.3.5", default-features = false, optional = true }
plotters-backend = { version = "0.3.5", default-features = false, optional = true }
raw-window-handle = "0.6.0"
[target.'cfg(target_arch = "wasm32")'.dependencies.wgpu]
version = "23.0.0"
features = ["webgl"]
[dev-dependencies]
image = { version = "0.25.1", features = ["png"] }
[[example]]
name = "plotters"
required-features = ["plotters"]
# [patch.crates-io]
# intentional = { path = "../intentional" }
# appit = { path = "../appit" }
# [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" }