This repository was archived by the owner on Feb 21, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (56 loc) · 1.84 KB
/
Cargo.toml
File metadata and controls
62 lines (56 loc) · 1.84 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "bmputil"
description = "Black Magic Probe companion utility"
version = "1.0.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/blackmagic-debug/bmputil"
edition = "2024"
default-run = "bmputil-cli"
[dependencies]
anstyle = "1.0"
clap = { version = "4.0", default-features = false, features = ["std", "color", "help", "usage", "unicode", "wrap_help", "cargo", "derive", "suggestions"] }
env_logger = "0.11"
dfu-core = { version = "0.7.0", features = ["std"] }
dfu-nusb = "0.1.1"
nusb = "0.1"
log = "0.4"
const_format = "0.2"
thiserror = "2.0"
indicatif = "0.17"
goblin = { version = "0.9", default-features = false, features = ["std", "elf32", "elf64", "endian_fd"] }
libc = "0.2"
bstr = "1.10.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "blocking", "json", "charset", "http2", "system-proxy"] }
url = { version = "2.5.4", features = ["serde"] }
rc-zip-sync = "4.2.6"
dialoguer = "0.11.0"
directories = "6.0.0"
sha2 = "0.10.8"
color-eyre = "0.6.3"
tui-markdown = "0.3.3"
ratatui = { version = "0.29.0", features = ["unstable-rendered-line-info"] }
clap_complete = "4.5.52"
bitmask-enum = "2.2.5"
owo-colors = "4.2.0"
[target.'cfg(any(target_os = "linux", target_os = "android", target_os = "macos"))'.dependencies]
termios = "0.3.3"
[target.'cfg(windows)'.dependencies]
wdi = "0.1.0"
deelevate = "0.2.0"
libc = "0.2.132"
lazy_static = "1.4.0"
winreg = "0.10.1"
windows = { version = "0.61.3", features = ["Win32_Devices_Communication", "Win32_System_Threading"] }
windows-registry = "0.5.2"
windows-result = "0.3.4"
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3.9"
features = ["std", "setupapi", "winuser", "devguid"]
[build-dependencies]
rustc_version = "0.4"
static_vcruntime = "2.0"
[profile.release]
lto = "fat"
debug = 2