-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
36 lines (31 loc) · 969 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
[package]
name = "taptap"
description = "An implementation of the Tigo TAP protocol"
authors = ["Will Glynn"]
repository = "https://github.com/willglynn/taptap"
keywords = ["solar"]
readme = "README.md"
version = "0.1.1"
edition = "2021"
license = "MIT"
[features]
default = ["serialport", "clap", "env_logger"]
[dependencies]
# Library dependencies
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
schemars = { version = "1.0.0-alpha.2", features = ["chrono04"] }
chrono = { version = "0.4.38", features = ["serde"] }
libc = "0.2.155"
zerocopy = { version = "0.8.0-alpha.16", features = ["derive"] }
flate2 = "1.0"
log = "0.4.22"
# Optional library features
serialport = { version = "4.4", optional = true }
# Executable dependencies
clap = { version = "4.5.13", features = ["derive"], optional = true }
env_logger = { version = "0.11.5", optional = true }
[[bin]]
name = "taptap"
required-features = ["clap", "env_logger"]