forked from cnwzhjs/rplidar.rs
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
37 lines (30 loc) · 883 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
30
31
32
33
34
35
36
37
[package]
name = "rplidar_drv_rs"
description = "Driver for Slamtec RPLIDAR series laser sensors"
version = "0.7.0"
license = "BSD-2-Clause"
repository = "https://github.com/RandomStudio/rplidar.rs"
keywords = ["Slamtec", "Rplidar", "Driver"]
authors = [
"Tony Huang <[email protected]>",
"Stephen Buchanan <[email protected]>",
]
edition = "2021"
exclude = [".gitignore", ".travis.yml", ".cargo/config"]
[badges]
travis-ci = { repository = "RandomStudio/rplidar.rs", branch = "main" }
[lib]
name = "rplidar_drv"
path = "src/lib.rs"
[dependencies]
byteorder = "1.2.7"
rpos_drv = { path = "rpos_drv", version = "0.3" }
crc = "1.8.1"
[dev-dependencies]
hex-slice = "0.1.4"
serialport = { version = "4.2.0", default-features = false, features = [] }
[workspace]
members = ["rpos_drv"]
resolver = "2"
[patch.crates-io]
rpos_drv = { path = "rpos_drv", version = "0.3" }