-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (43 loc) · 1.46 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
[package]
name = "metaview"
version = "0.1.0"
authors = ["Jakub Hlusička <[email protected]>"]
edition = "2018"
[lib]
name = "metaview_lib"
path = "src/lib.rs"
[[bin]]
name = "metaview_bin"
path = "src/main.rs"
[features]
native-example-mapp = [ "example-mapp", "example-mapp-2" ]
[dependencies]
ammolite = { git = "https://github.com/metaview-org/ammolite", default-features = false }
# ammolite = { path = "../ammolite", default-features = false }
ammolite-math = { git = "https://github.com/metaview-org/ammolite", default-features = false }
# ammolite-math = { path = "../ammolite/ammolite-math", default-features = false }
vulkano = { git = "https://github.com/Limeth/vulkano", branch = "feature-swapchain-image-trait" }
# vulkano = { path = "../vulkano/vulkano" }
openxr = "0.9.4"
# openxr = { path = "../openxrs/openxr" }
# winit = "0.22.0"
winit = { git = "https://github.com/rust-windowing/winit.git" }
paste = "0.1"
smallvec = "0.6.10"
lazy_static = "1.4.0"
specs = "0.15.1"
specs-hierarchy = "0.5.1"
# conrod = { version = "0.51.1", features = [ "piston" ] }
wasmtime-rust = "0.8.0"
serde = { version = "1.0", features = ["derive"] }
json5 = "0.2.5"
mlib = { git = "https://github.com/metaview-org/mlib" }
# mlib = { path = "../mlib" }
example-mapp = { path = "../example-mapp", optional = true }
example-mapp-2 = { path = "../example-mapp-2", optional = true }
[profile.dev.package."*"]
opt-level = 2
debug = 1
[profile.dev.package.ammolite]
opt-level = 0
debug = 2