-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (61 loc) · 2.21 KB
/
Copy pathCargo.toml
File metadata and controls
68 lines (61 loc) · 2.21 KB
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 = "ascending_graphics"
version = "0.46.0"
authors = ["S.J.R. van Schaik", "Andrew Wheeler <genusistimelord@gmail.com>"]
license = "MIT OR Apache-2.0"
edition = "2024"
rust-version = "1.94"
readme = "README.md"
documentation = "https://docs.rs/ascending_graphics"
keywords = ["wgpu", "rendering", "2d", ]
repository = "https://github.com/AscendingCreations/AscendingGraphics"
description = "A graphical rendering Framework for 2D, using wgpu and winit."
categories = ["game-development", "graphics", "rendering"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["rayon", "crate_passthru"]
crate_passthru = []
rayon = ["dep:rayon", "indexmap/rayon"]
static_dx = ["wgpu/static-dxc"]
logging = ["dep:log"]
[dependencies]
bytemuck = { version = "1.25.2", features = ["derive"] }
thiserror = "2.0.20"
winit = { version = "0.30.13", features = ["serde"] }
image = { version = "0.25.10", features = ["serde"] }
guillotiere = { version = "0.7.0", features = ["serialization"] }
serde = { version = "1.0.229", features = ["derive"] }
log = { version = "0.4.33", optional = true }
cosmic-text = { version = "0.19.0", features = ["shape-run-cache"] } #git = "https://github.com/pop-os/cosmic-text"
lru = "0.18.2"
glam = { version = "0.33.3", features = ["bytemuck", "mint", "serde"] }
lyon = "1.0.19"
indexmap = { version = "2.14.0", features = ["serde"]}
slotmap = { version = "1.1.1", features = ["serde"]}
ahash = { version = "0.8.12", features = ["serde"]}
slab = { version = "0.4.12", features = ["serde"]}
rayon = { version = "1.12.0", optional = true }
[dependencies.camera]
package = "ascending_camera"
#path = "../AscendingCamera"
version = "0.9.0"
[dependencies.input]
package = "ascending_input"
#path = "../AscendingInput"
version = "0.6.2"
[dependencies.time]
package = "ascending_time"
#path = "../AscendingTime"
version = "0.5.0"
[dependencies.naga]
#git = "https://github.com/gfx-rs/wgpu"
#rev = "76003dc0035d53a474d366dcdf49d2e4d12e921f"
#branch = "cw/vulkan-swapchain"
version = "30.0.0"
features = ["wgsl-in"]
[dependencies.wgpu]
#git = "https://github.com/gfx-rs/wgpu"
#branch = "cw/vulkan-swapchain"
#rev = "061e04b"
#path = "../wgpu-trunk/wgpu"
version = "30.0.0"