-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (38 loc) · 958 Bytes
/
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
# Schema: https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"frameworks/build",
"frameworks/astd",
"frameworks/boxer-sys",
"frameworks/toast",
"frameworks/glfw-sys",
"frameworks/glfw",
"frameworks/glew-sys",
"frameworks/glew",
"frameworks/gl-sys",
"frameworks/gl",
"frameworks/vulkan-sys",
"frameworks/vulkan",
"frameworks/openal-sys",
"frameworks/openal",
"frameworks/imgui-sys",
"frameworks/imgui",
"frameworks/ansi",
"frameworks/log",
"alloy",
"examples/vulkan-example",
"examples/opengl-example",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
authors = ["Matthew Rodusek"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/bitwizeshift/alloy-rs"
edition = "2021"
[workspace.dependencies]
bindgen = { version = "0.70.1" }
cmake = { version = "0.1" }
syn = { version = "1.0", features = ["full"] }
quote = { version = "1.0" }
proc-macro2 = { version = "1.0" }