|
12345678910111213141516171819202122232425 |
- [package]
- name = "weight_reader"
- version = "0.1.0"
- edition = "2021"
-
- [dependencies]
- serialport = "4.2.2"
- anyhow = "1.0"
- serde = { version = "1.0", features = ["derive"] }
- serde_json = "1.0"
- actix-web = "4.4"
- actix-cors = "0.6"
- tokio = { version = "1.0", features = ["full"] }
- reqwest = { version = "0.11", features = ["blocking", "json"] }
- once_cell = "1.18"
-
- [profile.release]
- opt-level = 3
- lto = true
- codegen-units = 1
- panic = 'abort'
- strip = true
-
- [target.'cfg(windows)'.dependencies]
- winapi = { version = "0.3", features = ["winbase"] }
|