-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (41 loc) · 1016 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "acid64c"
version = "1.0.9"
authors = ["Wilfred Bos"]
description = "ACID64 Console SID player."
readme = "README.md"
edition = "2021"
license = "GPL-3.0-or-later"
keywords = ["acid64-player", "sidplayer", "c64-music-player", "sid-6581", "sid-8580"]
build = "build.rs"
[dependencies]
ahash = "0.8"
atomicring = "1.2"
attohttpc = { version = "0.28", features = ["multipart-form"] }
chrono = "0.4"
crossterm = "0.28"
encoding = "0.2"
encoding_rs = "0.8"
encoding_rs_io = "0.1"
if-addrs = "0.13"
libloading = "0.8"
parking_lot = "0.12"
timer = "0.2"
thread-priority = "1.2"
[dependencies.libftd2xx]
version = "0.33"
features = ["static"]
[target.'cfg(windows)'.dependencies]
windows = { version = "0.59.0", features = [
"Win32_Media"
] }
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
[package.metadata.winres]
ProductName = "ACID64 Console Player"
LegalCopyright = "Copyright © 2003 - 2025 Wilfred Bos"
[profile.release]
codegen-units = 1
lto = true
panic = "abort"
strip = true