-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 795 Bytes
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 795 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 = "dotclock"
version = "0.7.0"
authors = ["Adam Lusch <alusch@gmail.com>"]
description = "Command-line tool to show a clock on a Luminator display"
license = "MIT"
repository = "https://github.com/alusch/flipdot"
readme = "README.md"
keywords = ["clock", "flip-dot", "Luminator", "bus", "sign"]
categories = ["command-line-utilities"]
edition = "2024"
[dependencies]
anyhow = "1.0.97"
chrono = "0.4.40"
eg-bdf = { git = "https://github.com/embedded-graphics/embedded-bdf.git" }
embedded-graphics = "0.8.1"
env_logger = "0.11.7"
flipdot-graphics = "0.1.0"
serial = "0.4.0"
structopt = "0.3.26"
timer = "0.2.0"
[build-dependencies]
eg-font-converter = { git = "https://github.com/embedded-graphics/embedded-bdf.git" }
[profile.release]
lto = true
opt-level = 3
codegen-units = 1