-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 708 Bytes
/
Cargo.toml
File metadata and controls
25 lines (22 loc) · 708 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
[package]
name = "asha"
version = "0.1.0"
authors = ["redraincatching <redraincatching@disroot.org>"]
edition = "2021"
rust-version = "1.81"
[dependencies]
object = "0.36.5"
phf = { version = "0.11", features = ["macros"] }
# ----- gui dependencies ----- #
egui = "0.30"
eframe = { version = "0.30", default-features = false, features = [
"accesskit", # make egui compatible with screen readers.
"default_fonts", # embed the default egui fonts.
"glow", # use the glow rendering backend. alternative: "wgpu".
"wayland", # to support linux (and ci)
] }
log = "0.4"
rfd = "0.15.2"
elf = "0.7.4"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
env_logger = "0.11"