forked from carlossless/sinowealth-kb-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (30 loc) · 743 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
[package]
name = "sinowealth-kb-tool"
description = """
A utility for reading and writing flash contents on Sinowealth 8051-based HID devices through the commonly found ISP bootloader
"""
repository = "https://github.com/carlossless/sinowealth-kb-tool"
version = "0.1.1"
edition = "2021"
license = "MIT"
rust-version = "1.65"
[dependencies]
clap = "4.1"
clap-num = "1.0"
ihex = "3.0"
md5 = "0.7"
thiserror = "1.0"
[dependencies.hidapi]
version = "2.4"
default-features = false
features = ["linux-static-libusb"]
[dependencies.log]
version = "0.4"
features = ["max_level_debug"]
[dependencies.simple_logger]
version = "4.3"
default-features = false
features = ["stderr", "colors"]
[dependencies.phf]
version = "0.11"
features = ["macros"]