-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (28 loc) · 703 Bytes
/
Cargo.toml
File metadata and controls
30 lines (28 loc) · 703 Bytes
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
[package]
name = "serialscale"
version = "0.1.2"
edition = "2021"
authors = ["Marco Di Pillo Tomic <marcodpt@protonmail.com>"]
license = "MIT"
description = "An IOT server written in rust for reading weighing data on scales via serial port"
readme = "README.md"
homepage = "https://github.com/marcodpt/serialscale"
repository = "https://github.com/marcodpt/serialscale"
keywords = [
"iot",
"serialport",
"server",
"scale",
"toledo"
]
categories = ["hardware-support"]
[dependencies]
ascii_converter = "0"
serialport = "4"
tiny_http = "0"
toml = "0"
serde = {version = "1", features = ["derive"]}
serde_json = "1"
clap = {version = "4", features = ["derive"]}
[profile.release]
opt-level = 3