-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (28 loc) · 973 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
[package]
name = "datalogger"
version = "0.2.0"
authors = ["Marco Radocchia <[email protected]>"]
edition = "2021"
rust-version = "1.61.0"
description = "Humidity & Temperature CLI datalogger for DHT22 sensor on Raspberry Pi."
readme = "README.md"
repository = "https://github.com/marcoradocchia/datalogger/"
license = "GPL-3.0-only"
keywords = ["temperature", "humidity", "datalogger", "dht22", "raspberry-pi"]
categories = ["command-line-utilities", "science"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "3.2.17", features = ["derive"] }
dht22_pi = "1.0.0"
chrono = "0.4.22"
signal-hook = "0.3.14"
termcolor = "1.1.3"
atty = "0.2.14"
rppal = "0.13.1"
[build-dependencies]
clap = { version = "3.2.17", features = ["derive"] }
clap_mangen = "0.1.10"
clap_complete = "3.2.3"
[profile.release]
lto = true # link-time-optimization
strip = true # strip symbols from binary