Cargo.toml

 1[package]
 2name = "auto_update_helper"
 3version = "0.1.0"
 4edition.workspace = true
 5publish.workspace = true
 6license = "GPL-3.0-or-later"
 7
 8[lints]
 9workspace = true
10
11[[bin]]
12name = "auto_update_helper"
13path = "src/auto_update_helper.rs"
14doctest = false
15
16[dependencies]
17anyhow.workspace = true
18log.workspace = true
19simplelog.workspace = true
20workspace-hack.workspace = true
21
22[target.'cfg(target_os = "windows")'.dependencies]
23windows.workspace = true
24
25[target.'cfg(target_os = "windows")'.build-dependencies]
26winresource = "0.1"
27
28[package.metadata.docs.rs]
29targets = ["x86_64-pc-windows-msvc"]