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
20
21[target.'cfg(target_os = "windows")'.dependencies]
22windows.workspace = true
23
24[target.'cfg(target_os = "windows")'.build-dependencies]
25winresource = "0.1"
26
27[package.metadata.docs.rs]
28targets = ["x86_64-pc-windows-msvc"]