-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (46 loc) · 1.28 KB
/
Copy pathCargo.toml
File metadata and controls
50 lines (46 loc) · 1.28 KB
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
[package]
name = "bptimer-desktop"
version = "0.3.0"
edition = "2024"
[dependencies]
anyhow = "1.0.104"
base64 = "0.23"
bytes = "1.12.1"
chrono = "0.4.45"
dirs = "6.0.0"
dotenvy = "0.15"
eframe = { version = "0.35", default-features = true, features = ["glow"] }
egui = "0.35"
egui_extras = "0.35.0"
egui_material_icons = "0.7.0"
egui_plot = "0.36"
env_logger = { version = "0.11.11", features = ["auto-color", "humantime"] }
etherparse = "0.21"
eventsource-stream = "0.2.3"
flate2 = "1.1"
futures = "0.3.33"
global-hotkey = "0.8"
image = { version = "0.25.10", features = ["webp"] }
instant = "0.1.13"
log = "0.4"
netdev = "0.45.0"
open = "5.4"
pcap = { version = "2.4.0", features = ["capture-stream"] }
prost = "0.14.4"
reqwest = { version = "0.13.4", features = ["json", "stream", "rustls", "blocking"], default-features = false }
self_update = "0.44.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.53.1", features = ["full"] }
windows-sys = { version = "0.61.2", features = ["Win32_Foundation", "Win32_System_Console", "Win32_System_Recovery"] }
zstd = "0.13.3"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
[profile.dev]
opt-level = 1
[build-dependencies]
prost-build = "0.14.4" # protobuf code generation
winres = "0.1.12"