-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (43 loc) · 1.15 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
[package]
name = "json-log-reader"
version = "0.1.0"
authors = ["Justin Arruda <[email protected]>"]
edition = "2021"
rust-version = "1.72"
[dependencies]
log = "^0.4"
pretty_env_logger = "^0.5"
rfd = "^0.14"
json = "^0.12"
regex = "^1.10"
grep = "^0.3"
grep-regex = "^0.1"
wasm-bindgen-futures = "0.4.42"
notify = "^6.1"
egui = { version = "^0.27", default-features = false, features = [
"log",
"default_fonts",
# "extra_debug_asserts",
"puffin",
"serde"
]}
eframe = { version = "^0.27", default-features = false, features = [
"default_fonts", # Embed the default egui fonts.
"glow", # Use the glow rendering backend. Alternative: "wgpu".
"persistence", # Enable restoring app state when restarting the app.
"puffin"
] }
egui_extras = { version = "^0.27", features = ["all_loaders"] }
egui_dock = "^0.12"
egui-toast = "^0.13"
serde = { version = "1", features = ["derive"] }
puffin = "^0.19"
puffin_http = "^0.16"
crossbeam-channel = "0.5.13"
[profile.release]
opt-level = 2 # fast and small
# Optimize all dependencies even in debug builds:
[profile.dev.package."*"]
opt-level = 2
[build-dependencies]
winresource = "0.1.17"