[package] name = "velodyne-lidar" version = "0.3.0" edition = "2021" authors = ["jerry73204 "] description = "Velodyne lidar data processing algorithms and utilities" documentation = "https://docs.rs/velodyne-lidar/" homepage = "https://github.com/jerry73204/rust-lidar-utils" repository = "https://github.com/jerry73204/rust-lidar-utils" categories = ["algorithms"] readme = "README.md" license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] serde = { version = "1.0.214", features = ["derive"] } serde_yaml = "0.9.34" serde-big-array = "0.5.1" chrono = "0.4.38" derivative = "2.2.0" itertools = "0.13.0" noisy_float = { version = "0.2.0", features = ["serde"] } measurements = "0.11.0" once_cell = "1.20.2" strum = { version = "0.26.3", features = ["derive"] } nmea = { version = "0.7.0", optional = true } pcap = { version = "2.2.0", optional = true } log = "0.4.22" rayon = { version = "1.10.0", optional = true } eyre = "0.6.12" # [dev-dependencies] # rand = "0.8.4" [features] default = [] full = ["nmea", "pcap", "parallel"] docs-rs = ["full"] parallel = ["rayon"] [package.metadata.docs.rs] features = ["full", "docs-rs"] no-default-features = true