-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
36 lines (34 loc) · 1019 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
[package]
name = "planets"
description = "A space game."
version = "0.1.0"
authors = ["Milkey Mouse <[email protected]>"]
edition = "2018"
repository = "https://github.com/milkey-mouse/planets"
readme = "README.md"
license = "GPL-3.0"
categories = ["games"]
keywords = [
"game",
"gravity",
"planets",
"asteroids",
"vulkan"
]
[dependencies]
arr_macro = "0.1.2"
cpal = "0.10.0"
crossbeam-utils = "0.6.6"
hashed = { version = "0.2.1", features = ["truncate"] }
hound = "3.4.0"
lewton = "0.9.4"
sample = "0.10.0"
vulkano = "0.14.0"
vulkano-shaders = "0.14.0"
vulkano-win = "0.14.0"
winit = "0.20.0-alpha3"
[patch.crates-io]
vulkano = { git = "https://github.com/milkey-mouse/vulkano.git", branch = "winit-0.20.0-alpha" }
vulkano-shaders = { git = "https://github.com/milkey-mouse/vulkano.git", branch = "winit-0.20.0-alpha" }
vulkano-win = { git = "https://github.com/milkey-mouse/vulkano.git", branch = "winit-0.20.0-alpha" }
#winit = { git = "https://github.com/rust-windowing/winit.git" }