-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (43 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
52 lines (43 loc) · 1.13 KB
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
[workspace]
members = ["crates/*"]
[package]
name = "vencord-launcher"
description = "An easy-to-use launcher for Vencord"
authors = ["Rie Takahashi <megumin@megu.dev>"]
version = "0.1.11"
license = "GPL-3.0"
homepage = "https://github.com/meguminsama/vencord-launcher"
repository = "https://github.com/meguminsama/vencord-launcher"
keywords = ["vencord", "discord", "modding", "electron", "injector"]
edition = "2021"
[dependencies]
clap = "4.5.27"
dirs = "6.0.0"
electron-hook = "0.2.1"
tinyjson = "2.5.1"
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] }
ureq = "3.0.3"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", default-features = false, features = [
"combaseapi",
"knownfolders",
"shlobj",
"winerror",
] }
[target.'cfg(unix)'.dependencies]
dialog = "0.3.0"
[lib]
name = "vencord_launcher"
path = "src/lib.rs"
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "vencord-stable"
path = "src/bin/stable.rs"
[[bin]]
name = "vencord-ptb"
path = "src/bin/ptb.rs"
[[bin]]
name = "vencord-canary"
path = "src/bin/canary.rs"
[build-dependencies]
winresource = { version = "0.1.19", default-features = false }