forked from MichalGniadek/klask
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
46 lines (43 loc) · 1.21 KB
/
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
43
44
45
46
[package]
name = "klask"
version = "1.0.0"
authors = ["Michał Gniadek <[email protected]>"]
edition = "2021"
license = "MIT"
description = "Automatically create GUI for clap apps"
repository = "https://github.com/MichalGniadek/klask"
categories = ["gui"]
keywords = ["clap", "gui", "ui", "cli", "egui"]
[dependencies]
cansi = "2.2.0"
clap = { version = "4", default-features = false, features = [
"std",
"derive",
"unicode",
"deprecated",
"error-context",
] }
eframe = { version = "0.22", features = ["glow"] }
linkify = "0.9"
rfd = "0.12"
thiserror = "1.0"
uuid = { version = "1.3", features = ["v4"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
futures = { version = "0.3.28", default-features = false }
log = "0.4.19"
uuid = { version = "1.3", features = ["v4", "js"] }
wasm-bindgen-futures = "0.4.37"
web-sys = { version = "0.3.46", features = [
'Document',
'Element',
'Window',
] }
#[target.'cfg(not(any(target_os = "windows", target_arch = "wasm32")))'.dependencies]
#native-dialog = "0.6"
#
## Should make dialogs look better
#[target.'cfg(target_os = "windows")'.dependencies]
#native-dialog = { version = "0.6", features = [
# "windows_dpi_awareness",
# "windows_visual_styles",
#] }