-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 701 Bytes
/
Cargo.toml
File metadata and controls
33 lines (28 loc) · 701 Bytes
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
[package]
name = "rivik"
version = "0.1.0"
edition = "2021"
license = "MPL-2.0"
[dependencies]
rivik-render = { path = "rivik-render" }
rivik-assets = { path = "rivik-assets" }
rivik-scene = { path = "rivik-scene" }
egui-winit = "0.21.1"
winit = "0.28.3"
pollster = "0.3.0"
color-backtrace = "0.5.1"
glam = {version = "0.23.0" , features= ["mint"]}
tracing = "0.1.37"
wgpu = "0.15.1"
mint = "0.5.9"
[dev-dependencies]
tracing-subscriber = "0.3.16"
rivik-shader = { path = "rivik-shader" }
asset-packer = { path = "rivik-asset-packer" }
snafu = "0.7.4"
toml = "0.7.3"
[workspace]
resolver = "2"
members = [
"rivik-render", "rivik-assets", "rivik-scene", "rivik-shader", "rivik-asset-packer"
]