-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
57 lines (54 loc) · 1.26 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
[workspace]
resolver = "2"
members = [
"loader",
"plugin-chatbox",
"plugin-clock",
"plugin-control",
"plugin-debug",
"plugin-lastfm",
"plugin-spotify",
"plugin-steamvr",
]
[workspace.package]
version = "2.6.4"
authors = ["Shayne Hartford <[email protected]>"]
edition = "2021"
readme = "README.md"
repository = "https://github.com/ShayBox/VRC-OSC"
license = "MIT"
[workspace.dependencies]
anyhow = "1"
async-ffi = "0.5"
derive-config = { version = "2", default-features = false }
dotenvy_macro = "0.15"
enigo = "0.1"
ferrispot = { git = "https://github.com/Shays-Forks/Ferrispot.git", default-features = false }
human-panic = "1"
inquire = "0.7"
libloading = "0.8"
ovr_overlay = { git = "https://github.com/Shays-Forks/ovr_overlay.git" }
path-absolutize = "3"
rosc = "0.10"
serde = "1"
serde_json = "1"
serde-this-or-that = "0.4"
spotify-lyrics = "0.0.7"
structstruck = "0.4"
terminal-link = "0.1"
tiny_http = "0.12"
tokio = "1"
toml = "0.8"
ureq = "2"
url = "2"
vrc-osc = { path = "loader" }
walkdir = "2"
webbrowser = "0.8"
windows = "0.54"
winres = "0.1"
# https://github.com/johnthagen/min-sized-rust
[profile.release]
strip = true # Automatically strip symbols from the binary.
opt-level = "z" # Optimize for size.
lto = true
codegen-units = 1