forked from marcbone/s_curve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (25 loc) · 780 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 = "s_curve"
version = "0.1.6"
authors = ["Marco Boneberger <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
repository = "https://github.com/marcbone/s_curve"
description = "Package to generate S-Curve trajectories for robotics and similar applications "
categories = ["science::robotics", "mathematics"]
keywords = ["s-curve", "trajectory", "motion", "curve", "scurve"]
readme = "README.md"
documentation = "https://docs.rs/s_curve/"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "s_curve"
path = "src/lib.rs"
[[example]]
name = "plot"
path = "examples/plot.rs"
[[example]]
name = "plotall"
path = "examples/plotall.rs"
[dependencies]
[dev-dependencies]
gnuplot = "0.0.37"