-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
42 lines (36 loc) · 951 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
36
37
38
39
40
41
42
[package]
name = "bichrome"
version = "0.8.0"
authors = ["Jørgen P. Tjernø <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
[dependencies]
anyhow = "^1"
const_format = "0.2"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
simplelog = "^0.12.1"
structopt = "0.3"
thiserror = "^1"
url = "^2.2.0"
webextension_pattern = { version = "0.3", features = ["serde"] }
[target.'cfg(windows)'.dependencies]
winreg = "^0.52.0"
[target.'cfg(windows)'.dependencies.windows]
version = "^0.52.0"
features = [
"Storage",
"Win32_Foundation",
"Win32_UI_Shell",
"Win32_UI_WindowsAndMessaging",
]
[target.'cfg(target_os = "macos")'.dependencies]
fruitbasket = "0.10.0"
[target.'cfg(windows)'.build-dependencies]
winres = "^0.1"
[package.metadata.winres]
OriginalFilename = "bichrome.exe"
FileDescription = "bichrome"
ProductName = "bichrome"
LegalCopyright = "© Jørgen Tjernø <[email protected]>"