-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
63 lines (53 loc) · 1.65 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "reston"
version = "0.1.0"
edition = "2021"
publish = false
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
[dependencies]
egui = { version = "0.27.2", features = ["color-hex"] }
#eframe = { version = "0.21", features = ["dark-light", "persistence"] }
eframe = { version = "0.27.2", features = ["persistence"] }
egui_extras = { version = "0.27.2", features = ["svg"] }
egui_dock = { version = "0.12.0", features = ["serde"] }
color-hex = "0.2"
serde = { version = "1", features = ["derive"] } # You only need this if you want app persistence
serde_json = "1.0"
image = "0.24"
font-kit = "0.12"
strum = { version = "0.26", features = ["derive"] }
strum_macros = "0.26"
sublime_fuzzy = "0.7"
parking_lot = "0.12"
# feature "http":
ureq = { version = "2.9.6" }
nom = { version = "7" }
# minreq = "2.7.0"
# url = { version = "2", features = ["serde"] }
# url-escape = "0.1.1"
#reqwest = { version = "0.11", features = ["blocking", "json"] }
rfd = "0.12"
zip = "0.6"
# openapiv3 = "1.0"
material-icons = "0.2"
syntect = { version = "5", default-features = false, features = [
"parsing", "default-themes",
"default-fancy",
] }
[dependencies.uuid]
version = "1.2"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]
# native:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tracing-subscriber = "0.3"
# web:
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1"
tracing-wasm = "0.2"
[profile.release]
opt-level = 2 # fast and small wasm