-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
42 lines (35 loc) · 1.09 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
[package]
name = "syact"
authors = [ "Samuel Nösslböck <[email protected]>" ]
version = "0.14.0"
description = "A library to control motors (mainly stepper motors), define actuators and their interactions with each other"
edition = "2021"
repository = "https://github.com/SamuelNoesslboeck/syact"
license-file = "LICENSE"
keywords = [ "framework", "robotics", "iot", "raspberry-pi" ]
[workspace]
members = [ "syact_std" ]
[lib]
name = "syact"
path = "src/lib.rs"
[dependencies]
atomic_float = "1.1.0"
embedded-hal = "1.0.0"
serde = { version = "1.0.213", features = [ "derive" ], optional = true } # "serde" feature
spin_sleep = { version = "1.2.1", optional = true } # Only while testing!
sykin = "0.1.0"
syunit = "0.4.0"
[features]
default = [ "serde" ]
serde = [ "dep:serde" ]
testing = [ "dep:spin_sleep" ]
# Binaries
[[bin]]
name = "stepper_torque_curve_printer"
path = "bin/stepper_torque_curve_printer.rs"
# Builder
[[bin]]
name ="builder-start_stop_builder_printer"
path = "bin/builder/start_stop_builder_printer.rs"
required-features = [ "testing" ]
#