-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (37 loc) · 930 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
33
34
35
36
37
38
39
40
41
42
[package]
name = "chiron"
version = "0.1.0"
authors = ["Claire V. Hammond <me@cvhammond.com>"]
edition = "2021"
categories = ["science", "simulation", "game-development", "science::robotics"]
description = "Graphical and command-line interface tools for Biomechanics Foundation"
license = "MIT OR Apache-2.0"
homepage = "https://chiron.rs"
repository = "https://github.com/biomechanics-foundation/chiron"
readme = "README.md"
keywords = ["biomechanics", "simulation", "game-development", "physics", "mathematics"]
[dependencies]
c3dio = "0.8.0"
bevy_c3d = "0.13.1"
bevy = "0.13"
bevy_egui = "0.26"
egui_dock = "0.11"
egui = "0.26"
egui_plot = "0.26"
egui_extras = "0.26"
uuid = "1.4"
winit = "0.29"
image = "0.25"
grid = "0.10"
clap = "4.4"
log = "0.4"
env_logger = "0.10"
colored = "2"
indicatif = "0.17"
glob = "0.3.1"
rfd = "0.14"
[dev-dependencies]
test-files = "0.1.2"
[[bin]]
name = "c3dio"
path = "src/c3dio/main.rs"