ev3dev-pid-linefollow/Cargo.toml

23 lines
381 B
TOML
Raw Permalink Normal View History

2021-09-03 09:52:00 +02:00
[package]
2023-01-17 00:52:03 +01:00
name = "ev3dev-pid-linefollow"
2024-01-22 21:20:49 +01:00
version = "1.0.0"
edition = "2021"
2021-09-03 09:52:00 +02:00
[dependencies]
2024-01-22 21:20:49 +01:00
ev3dev-lang-rust = { version = "0.13.0", features = ["screen"] }
2023-01-17 00:52:03 +01:00
image = "0.24"
imageproc = "0.23"
rusttype = "0.9"
2023-01-28 23:39:10 +01:00
paste = "1.0"
pid = "4.0"
thiserror = "1.0"
2023-01-29 14:57:57 +01:00
rand = "0.8"
2024-01-22 21:20:49 +01:00
itertools = "0.12"
exec = "0.3"
2021-09-03 09:52:00 +02:00
[profile.release]
2024-01-22 21:20:49 +01:00
opt-level = "z"
2021-09-03 09:52:00 +02:00
lto = true
2024-01-22 21:20:49 +01:00
codegen-units = 1
2023-01-28 23:39:10 +01:00
strip = "debuginfo"