-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
64 lines (55 loc) · 1.14 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "beesynth"
version = "0.1.0"
edition = "2021"
# Not implemented yet:
# [lib]
# crate-type = ["cdylib"]
[profile.dev]
opt-level = 0
[profile.release]
opt-level = 3
lto = true
debug = 0
strip = true
panic = "abort"
[target.'cfg(windows)'.dependencies.windows]
version = "0.48"
features = [
"Win32_Foundation",
"Win32_Storage_FileSystem",
"Win32_Security",
"Win32_System_IO",
"Win32_System_Ioctl",
"Win32_System_Services",
"Win32_System_Threading",
"Win32_System_Diagnostics_Debug",
"Win32_System_Kernel",
"Win32_System_SystemInformation",
"Win32_System_Registry",
"Win32_System_Memory",
"Win32_System_WindowsProgramming"
]
[workspace]
members = [
"winapi",
"inpout",
"iopl",
"beeper",
"nano_sleep"
]
[build-dependencies]
embed-manifest = "1.4"
[dependencies]
# Foreign:
ctrlc = { version = "3.3", features = ["termination"] }
wyhash = "0.5"
rustfft = "6.1"
find_peaks = "0.1"
# Local:
winapi = { path = "./winapi" }
inpout = { path = "./inpout" }
iopl = { path = "./iopl" }
beeper = { path = "./beeper" }
nano_sleep = { path = "./nano_sleep" }
note = { path = "./note" }