26 lines
574 B
TOML
26 lines
574 B
TOML
[package]
|
|
name = "car-rs"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
# https://github.com/golemparts/rppal
|
|
rppal = { version = "0.13.1", optional = true }
|
|
futures-core = "0.3"
|
|
futures-util = "0.3"
|
|
tokio = { version = "1", features = ["full"] }
|
|
prost = "0.11"
|
|
|
|
# https://github.com/hyperium/tonic
|
|
tonic = "0.8.0"
|
|
|
|
# https://docs.rs/serialport/4.0.1/serialport/index.html
|
|
serialport = "4.0.1"
|
|
|
|
[build-dependencies]
|
|
tonic-build = "0.8.0"
|
|
|
|
[features]
|
|
rppal = ["dep:rppal"] |