ev3dev-pid-linefollow/Cargo.toml

20 lines
334 B
TOML
Raw Normal View History

2021-09-03 09:52:00 +02:00
[package]
2023-01-17 00:52:03 +01:00
name = "ev3dev-pid-linefollow"
2021-09-03 09:52:00 +02:00
version = "0.1.0"
edition = "2021"
2021-09-03 09:52:00 +02:00
[dependencies]
2023-01-17 00:52:03 +01:00
ev3dev-lang-rust = { version = "0.12.0", features = ["screen"] }
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"
2023-01-29 15:39:39 +01:00
itertools = "0.10"
2021-09-03 09:52:00 +02:00
[profile.release]
lto = true
2023-01-28 23:39:10 +01:00
strip = "debuginfo"