-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (39 loc) · 997 Bytes
/
Cargo.toml
File metadata and controls
45 lines (39 loc) · 997 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "dfu-buddy"
version = "0.3.0"
authors = ["Oliver Rockstedt <info@sourcebox.de>"]
license = "MIT"
edition = "2024"
rust-version = "1.92"
description = "DFU flash utility with GUI"
homepage = "https://github.com/sourcebox/dfu-buddy"
repository = "https://github.com/sourcebox/dfu-buddy"
[dependencies]
anyhow = "1.0.102"
dfufile = "0.3.0"
dirs = "6.0.0"
futures = "0.3.32"
log = { version = "0.4.29", features = [
"max_level_info",
"release_max_level_info",
] }
regex = "1.12.3"
rfd = "0.17.2"
rusb = { version = "0.9.4" }
serde = { version = "1.0.228", features = ["derive"] }
simple_logger = { version = "5.2.0" }
[dependencies.eframe]
version = "0.34.1"
features = ["persistence"]
[features]
default = ["libusb-vendored"]
libusb-vendored = ["rusb/vendored"]
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"
[profile.release]
strip = true
[package.metadata.bundle]
identifier = "de.sourcebox.dfu-buddy"
name = "DFU Buddy"
osx_minimum_system_version = "10.12"