-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
45 lines (37 loc) · 1.07 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
[package]
name = "Group13"
version = "0.1.0"
edition = "2021"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
egui = "0.25"
eframe = { version = "0.25", default-features = false, features = [
"accesskit", # Make egui compatible with screen readers. NOTE: adds a lot of dependencies.
"default_fonts", # Embed the default egui fonts.
"glow", # Use the glow rendering backend. Alternative: "wgpu".
] }
winapi = { version = "0.3.9", features = ["winuser", "wincon"] }
rfd = "0.13"
log = "0.4.19"
tracing-subscriber = "0.3"
futures = "0.3.28"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
image = "0.24.9"
gif = "0.11"
rdev = "0.5.3"
chrono = "0.4.38"
auto-launch = "0.5.0"
rodio = "0.14"
[target.'cfg(target_os = "linux")'.dependencies]
alsa = "0.9"
[build-dependencies]
embed-resource = "2.4"
[profile.release]
opt-level = 3
# Optimize all dependencies even in debug builds:
[profile.dev.package."*"]
opt-level = 2
[package.metadata.winres]
"no-console" = true