-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
49 lines (43 loc) · 1.2 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
45
46
47
48
49
[package]
name = "athenacl"
version = "2.0.0"
edition = "2021"
[package.metadata.bundle]
name = "athenaCL"
identifier = "by.alestsurko.athenacl"
icon = ["resources/athenaCL.icns"]
resources = ["resources/SGM-v2.01-YamahaGrand-Guit-Bass-v2.7.sf2"]
[dependencies]
ahash = "0.8.11"
async-channel = "2.3.1"
cpal = "0.15.3"
env_logger = "0.11"
iced = { version = "0.13.1", features = ["tokio", "wgpu"] }
iced_aw = "0.11"
iced_fonts = { version = "0.1.1", features = ["nerd"] }
log = "0.4"
midi-player = "0.2.1"
quick-xml = "0.31.0"
rfd = "0.14.0"
# it's git for now, because the version supporting aiff have not released yet
rodio = { git = "https://github.com/RustAudio/rodio.git", features = [
"symphonia-all",
"symphonia-aiff",
"symphonia-alac",
] }
rustpython-pylib = { version = "0.4.0", features = ["freeze-stdlib"] }
rustpython-stdlib = "0.4.0"
rustpython-vm = { version = "0.4.0", features = ["freeze-stdlib"] }
serde = { version = "1", features = ["derive"] }
thiserror = "1.0.64"
[lints.clippy]
all = "warn"
[lints.rust]
missing_docs = "warn"
[profile.release]
strip = true
lto = true
codegen-units = 1
panic = "abort"
[profile.dev]
opt-level = 2 # rustpython is too slow in debug mode, so we enable -O2