-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
32 lines (29 loc) · 828 Bytes
/
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
[package]
name = "ncube"
version = "2.4.1"
edition = "2021"
authors = ["Nuno David <[email protected]>"]
license = "MIT"
description = "Generalized Hypercube Visualizer"
readme = ".github/README.md"
repository = "https://github.com/ndavd/ncube"
exclude = [".github/*.gif", ".github/workflows", "web"]
keywords = ["simulation", "hypercube", "bevy", "mathematics", "tesseract"]
categories = ["simulation", "mathematics", "visualization", "graphics"]
[profile.tiny]
inherits = "release"
opt-level = "s"
[target.'cfg(not(target_family="wasm"))'.dependencies]
home = "0.5.5"
eframe = "0.23.0"
egui_file = "0.17.0"
[dependencies]
bevy = "0.13.2"
bevy_egui = { version = "0.27.0", default-features = false, features = [
"open_url",
"default_fonts",
"render",
] }
serde = "1.0.188"
serde_json = "1.0.105"
wasm-bindgen = "0.2.92"