2021-08-26 10:26:40 +00:00
|
|
|
[package]
|
|
|
|
name = "catprint"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-08-20 22:51:18 +00:00
|
|
|
btleplug = "0.11"
|
|
|
|
uuid = "1.10"
|
2021-08-26 10:26:40 +00:00
|
|
|
futures = "0.3"
|
|
|
|
tokio = {version = "1.10", features = ["rt", "macros", "rt-multi-thread"] }
|
2024-08-20 22:51:18 +00:00
|
|
|
crc = { git = "https://github.com/mrhooray/crc-rs.git" }
|
2021-08-26 10:26:40 +00:00
|
|
|
dither = "=1.3.7" # last version without nightly requirement
|
2024-08-20 22:51:18 +00:00
|
|
|
image = "0.25"
|
|
|
|
clap = { version = "4.5", features = ["derive"] }
|