-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
29 lines (24 loc) · 877 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
[package]
name = "c3dio"
version = "0.8.0"
authors = ["Claire V. Hammond <me@cvhammond.com>"]
edition = "2021"
categories = ["science", "simulation", "parser-implementations", "game-development", "science::robotics"]
description = "A library for reading and writing C3D motion capture files."
license = "MIT OR Apache-2.0"
homepage = "https://chiron.rs/c3dio"
repository = "https://github.com/biomechanics-foundation/c3dio"
readme = "README.md"
keywords = ["c3d", "parser", "motion-capture", "mocap", "biomechanics"]
exclude = ["tests", "tests/*", "examples", "examples/*"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
grid = "0.10"
[dev-dependencies]
test-files = "0.1.2"
[[example]]
name = "write-simple"
path = "examples/write-simple.rs"
[[example]]
name = "read-write"
path = "examples/read-write.rs"