-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (30 loc) · 853 Bytes
/
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
[package]
name = "nametag"
version = "0.2.0"
edition = "2021"
[lib]
name = "nametag"
path = "src/lib.rs"
# referenced https://github.com/johnthagen/min-sized-rust
# for some final binary size optimizations
[profile.release]
strip = true
lto = true
codegen-units = 1
panic = "abort"
[dependencies]
clap = { version = "4.5.4", features = ["derive"] }
eframe = { version = "0.27", features = ["default"] }
egui_extras = { version = "0.27.2", features = ["image"] }
env_logger = { version = "0.10", default-features = false, features = [
"auto-color",
"humantime",
] }
# Must match the version of image that egui/eframe and egui/egui_extras is using.
# I used their github releases to figure it out.
image = { version = "0.24", features = ["default"] }
nom = "7.1.3"
open = "5.1.3"
rand = "0.8.5"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"