-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (48 loc) · 1.72 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
[workspace]
resolver = "2"
members = [
"simba",
"simba-cmd",
"visualizer",
"native-gui",
"cow-tree",
# "web-gui",
]
[workspace.dependencies]
asim = { git="http://github.com/kaimast/asim.git" }
log = "0.4"
rand = "0.8"
ron = "0.8"
console-subscriber = "0.4"
dashmap = "6"
#winit = "0.30"
winit = { git = "https://github.com/iced-rs/winit.git", rev="254d6b3420ce4e674f516f7a2bd440665e05484d" }
wgpu = { version="23", features=["spirv"] }
iced_aw = { version="0.11", default-features=false }
#iced = "0.13"
#iced_runtime = "0.13"
#iced_renderer = "0.13"
#iced_winit = "0.13"
#iced_core = "0.13"
#iced_wgpu = "0.13"
iced = { git="https://github.com/iced-rs/iced.git", default-features=false }
iced_runtime = { git="https://github.com/iced-rs/iced.git", default-features=false}
iced_renderer = { git="https://github.com/iced-rs/iced.git", default-features=false }
iced_widget = { git="https://github.com/iced-rs/iced.git"}
iced_winit = { git="https://github.com/iced-rs/iced.git"}
iced_core = { git="https://github.com/iced-rs/iced.git", default-features=false }
iced_wgpu = { git="https://github.com/iced-rs/iced.git"}
[profile.release]
opt-level = 3
debug = true
[profile.dev.build-override]
opt-level = 3
[patch.crates-io]
iced = { git="https://github.com/iced-rs/iced.git"}
iced_runtime = { git="https://github.com/iced-rs/iced.git"}
iced_renderer = { git="https://github.com/iced-rs/iced.git"}
iced_widget = { git="https://github.com/iced-rs/iced.git"}
iced_winit = { git="https://github.com/iced-rs/iced.git"}
iced_core = { git="https://github.com/iced-rs/iced.git"}
iced_wgpu = { git="https://github.com/iced-rs/iced.git"}
winit = { git = "https://github.com/iced-rs/winit.git", rev="254d6b3420ce4e674f516f7a2bd440665e05484d" }