-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
20 lines (18 loc) · 942 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[package]
name = "watercloudfall"
version = "0.0.1"
edition = "2021"
[dependencies]
# Use latest commit from all
winit = { git = "https://github.com/rust-windowing/winit.git" }
vulkano = { git = "https://github.com/vulkano-rs/vulkano.git" }
cgmath = { git = "https://github.com/rustgd/cgmath.git" }
rand = { git = "https://github.com/rust-random/rand.git" }
serde = { git = "https://github.com/serde-rs/serde.git" , features = ["derive"] }
vulkano-shaders = { git = "https://github.com/vulkano-rs/vulkano.git" }
tracing = { git = "https://github.com/tokio-rs/tracing" }
image = { git = "https://github.com/image-rs/image" }
softbuffer = { git = "https://github.com/rust-windowing/softbuffer" }
glam = { git = "https://github.com/bitshifter/glam-rs.git" }
#vulkano-util = { git = "https://github.com/vulkano-rs/vulkano.git" }
#vulkano-win = { git = "https://github.com/vulkano-rs/vulkano.git" , features = ["raw-window-handle_", "winit_"] }