-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (38 loc) · 1.17 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
[package]
name = "rustychat"
version = "0.1.0"
edition = "2021"
authors = ["Nils van Lück", "ClutchFred"]
description = "FOSS voice control plugin for teamspeak 3. Allows to connect games and gamemodes to teamspeak 3."
readme = "README.md"
repository = "https://github.com/vanlueckn/RustyChat"
license = "MIT"
keywords = ["teamspeak", "voice", "roleplay"]
[lib]
name = "rustychat"
crate-type = ["cdylib"]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "1.3.4", features = ["serde", "v4"] }
ts3plugin = { git = "https://github.com/ClutchFred/rust-ts3plugin" }
libdsp-sys = { git = "https://github.com/vanlueckn/rust-lib-dsp" }
lazy_static = "1.4.0"
simple-websockets = "0.1.6"
tungstenite = "0.19.0"
url = "2.4.0"
serde_repr = "0.1"
iced = "0.9"
iir_filters = "0.1.2"
rand = "0.8.5"
win32console = "0.1.5"
anyhow = "1.0.71"
[profile.release]
opt-level = 'z' # Optimize for size
lto = true # Enable link-time optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations
panic = 'abort' # Abort on panic
strip = true # Strip symbols from binary*
[[bin]]
name = "uitest"
path = "src/bin.rs"