-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 860 Bytes
/
Cargo.toml
File metadata and controls
33 lines (29 loc) · 860 Bytes
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
[package]
name = "asr-debugger"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
arc-swap = "1.6.0"
atomic = "0.6.0"
bstr = "1.8.0"
byte-unit = "5.0.3"
clap = { version = "4.4.6", default-features = false, features = ["derive", "std"] }
eframe = "0.28.1"
egui_dock = "0.13.0"
egui_file = "0.18.0"
egui_plot = "0.28.1"
hdrhistogram = { version = "7.5.2", default-features = false }
indexmap = "2.0.0"
livesplit-auto-splitting = { git = "https://github.com/LiveSplit/livesplit-core", features = ["debugger-support"] }
mime_guess = "2.0.4"
time = { version = "0.3.36", features = ["local-offset"] }
[profile.max-opt]
inherits = "release"
lto = true
strip = true
panic = "abort"
codegen-units = 1
[profile.max-opt.build-override]
opt-level = 0