-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
66 lines (53 loc) · 1.44 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
[workspace]
resolver = "2"
members = [
"gl",
"toybox",
"toybox-audio",
"toybox-bus",
"toybox-cfg",
"toybox-egui",
"toybox-gfx",
"toybox-host",
"toybox-input",
"toybox-vfs",
]
[workspace.package]
version = "0.5.0"
edition = "2021"
authors = ["Patrick Monaghan <[email protected]>"]
[workspace.dependencies]
anyhow = "1.0"
winit = "0.30.5"
glutin = "0.32"
glutin-winit = "0.5"
raw-window-handle = "0.6"
common = { git = "https://github.com/manpat/common-rs.git", version = ">=0.5.0", features=["interop", "serde"] }
toy = { git = "https://github.com/manpat/toy-rs.git" }
toybox-host = { path = "toybox-host" }
toybox-gfx = { path = "toybox-gfx" }
toybox-audio = { path = "toybox-audio" }
toybox-input = { path = "toybox-input" }
toybox-egui = { path = "toybox-egui" }
toybox-cfg = { path = "toybox-cfg" }
toybox-vfs = { path = "toybox-vfs" }
toybox-bus = { path = "toybox-bus" }
gl = { path = "gl" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
mint = "0.5"
cint = "0.3"
tracing = "0.1"
log = "0.4"
[workspace.dependencies.egui]
# Specific commit so we can us winit 0.30.5
git = "https://github.com/emilk/egui.git"
rev = "1f6ae49a5f6bf43a869c215dea0d3028be8d742a"
# version = "0.28.1"
default-features=true
features=["cint", "mint"]
[workspace.dependencies.egui-winit]
# Specific commit so we can us winit 0.30.5
git = "https://github.com/emilk/egui.git"
rev = "1f6ae49a5f6bf43a869c215dea0d3028be8d742a"
# version = "0.28.1"