-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (30 loc) · 892 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
38
39
[package]
name = "dsmr-rs"
version = "0.6.4"
authors = ["Maarten Mulders <[email protected]>"]
edition = "2018"
description = "A utility to ship 'smart meter' readings over HTTP"
license = "MIT License"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package.metadata.deb]
maintainer = "Maarten Mulders"
maintainer-scripts = "debian/"
copyright = "2021 - 2024 Maarten Mulders"
[package.metadata.deb.systemd-units]
[dependencies]
config = "0.14.0"
log = "0.4.22"
simplelog = "0.12.2"
[dependencies.serialport]
version = "4.6.1"
default-features = false
[dependencies.reqwest]
version = "0.12.11"
features = [ "blocking" ]
[dependencies.openssl]
version = "0.10.68"
# Build OpenSSL as part of building this crate
features = [ "vendored" ]
# Ensure we select OpenSSL 3.x
[dependencies.openssl-src]
version = "300.4.1+3.1.1"