-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
76 lines (70 loc) · 1.81 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
69
70
71
72
73
74
75
76
[workspace]
resolver = "2"
members = [
"fast3d",
"fast3d-gbi",
"fast3d-glium-renderer",
"fast3d-wgpu-renderer",
"examples",
]
default-members = [
"examples",
"fast3d",
"fast3d-gbi",
"fast3d-glium-renderer",
"fast3d-wgpu-renderer",
]
[workspace.package]
edition = "2021"
version = "0.5.0"
authors = ["fast3d-rs developers"]
description = "A Rust library for N64 Fast3D Graphics Rendering"
homepage = "https://crates.io/crates/fast3d"
repository = "https://github.com/retrofoundry/fast3d-rs"
keywords = ["n64", "gbi", "graphics", "rendering", "fast3d"]
readme = "README.md"
license = "MIT"
license-file = "LICENSE"
[workspace.dependencies.fast3d-glium]
package = "fast3d-glium-renderer"
path = "./fast3d-glium-renderer"
version = "0.5.0"
[workspace.dependencies.fast3d-wgpu]
package = "fast3d-wgpu-renderer"
path = "./fast3d-wgpu-renderer"
version = "0.5.0"
[workspace.dependencies]
bytemuck = { version = "1.13.1", features = ["derive"] }
glam = { version = "0.25.0", features = ["approx", "bytemuck"] }
log = "0.4"
fast3d-gbi = { version = "0.5.0", path = "fast3d-gbi" }
fast3d = { version = "0.5.0", path = "./fast3d" }
#fast3d-example = { version = "0.5.0", path = "./examples/common" }
rustc-hash = "1.1"
wgpu = { version = "0.19.3", features = ["glsl"] }
wgpu-hal = "0.19.3"
naga = "0.19.2"
glium = "0.34.0"
env_logger = "0.11.3"
winit = { version = "0.29.13", features = [
"x11",
"wayland",
"wayland-dlopen",
"wayland-csd-adwaita",
] }
pollster = "0.3.0"
lru = "0.12.3"
num_enum = "0.7.0"
bitflags = "2.3.3"
async-executor = "1"
pigment64 = "0.4.3"
nohash-hasher = "0.2.0"
# wasm32 dependencies
console_error_panic_hook = "0.1.7"
console_log = "1"
js-sys = "0.3.64"
wasm-bindgen = "0.2.87"
wasm-bindgen-futures = "0.4.34"
wasm-bindgen-test = "0.3"
web-sys = "0.3.64"
[patch.crates-io]