-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
60 lines (53 loc) · 1.31 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
[workspace]
members = ["miratope-core", "vec-like"]
[package]
name = "miratope"
description = "A polytope renderer and builder."
license = "MIT"
version = "0.4.15"
repository = "https://github.com/galoomba1/miratope-rs"
keywords = ["polytope", "dimension", "geometry"]
authors = [
"Violeta Hernández <vi.hdz.p@gmail.com>",
"Grayson Burton <ocornoc@protonmail.com>",
"Roman Salinas <ultraroman01@gmail.com>"
]
edition = "2018"
[dependencies]
miratope-core = { path = "miratope-core" }
vec-like = { path = "vec-like" }
approx = "0.5"
directories = "4.0"
lyon = "0.17"
ordered-float = "2.4"
rfd = "0.5"
ron = "0.6"
serde = { version = "1.0", features = ["derive"] }
webbrowser = "0.5"
# Use latest version of Bevy (might cause breakage!)
[dependencies.bevy]
git = "https://github.com/bevyengine/bevy"
branch = "main"
default-features = false
features = [
"bevy_gltf",
"bevy_winit",
"bevy_wgpu",
"render",
"bevy_dynamic_plugin",
"hdr",
"x11"
]
# Bevy egui integration with this latest version.
[dependencies.bevy_egui]
git = "https://github.com/vihdzp/bevy_egui/"
branch = "bevy-main"
[dependencies.egui]
version = "0.14.2"
default-features = false
features = ["multi_threaded"]
[patch.crates-io]
winit = { git = "https://github.com/vihdzp/winit" }
[profile.release]
lto = "thin"
incremental = true