-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (23 loc) · 786 Bytes
/
Copy pathCargo.toml
File metadata and controls
28 lines (23 loc) · 786 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
[package]
name = "flipdot"
version = "0.8.0" # remember to update html_root_url
authors = ["Adam Lusch <alusch@gmail.com>"]
description = "A library for interacting with Luminator flip-dot and LED signs over RS-485"
license = "MIT"
documentation = "https://docs.rs/flipdot"
repository = "https://github.com/alusch/flipdot"
readme = "README.md"
keywords = ["flip-dot", "Luminator", "bus", "sign", "RS-485"]
categories = ["hardware-support"]
edition = "2024"
[dependencies]
log = "0.4.26"
thiserror = "2.0.12"
flipdot-core = { version = "0.8.0", path = "libs/core" }
flipdot-serial = { version = "0.8.0", path = "libs/serial" }
[dev-dependencies]
env_logger = "0.11.6"
serial = "0.4.0"
serial-core = "0.4.0"
flipdot-testing = { version = "0.8.0", path = "libs/testing" }
[workspace]