-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
65 lines (56 loc) · 1.37 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
65
[package]
name = "classicube-cef-plugin"
version = "1.13.5"
edition = "2021"
publish = false
[lib]
crate-type = ["cdylib", "lib"]
[[bin]]
name = "cef"
path = "src/cef_exe.rs"
[dependencies]
async-dispatcher = { git = "https://github.com/SpiralP/rust-async-dispatcher.git" }
async-recursion = "1"
backtrace = "0.3"
base64 = "0.22"
bincode = "1"
clap = { git = "https://github.com/SpiralP/rust-clap-classicube.git", features = [
"derive",
] }
classicube-helpers = { git = "https://github.com/SpiralP/rust-classicube-helpers.git" }
classicube-sys = "4"
deunicode = "1"
dirs = "5"
error-chain = "0.12"
futures = "0.3"
futures-timer = "3"
lazy_static = "1"
ncollide3d = "0.33"
rand = "0.8"
regex = "1"
reqwest = "0.12"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-appender = "0.2"
tracing-flame = "0.2"
tracing-futures = "0.2"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
url = "2"
zstd = "0.13"
[target.'cfg(windows)'.dependencies]
windows = { version = "0.58", features = [
"Win32_System_Console",
"Win32_System_Threading",
"Win32_System_Diagnostics_ToolHelp",
] }
[build-dependencies]
bindgen = "0.70"
cc = "1"
cmake = "0.1"
[features]
ci = []
[package.metadata.release]
pre-release-commit-message = "Release {{version}}"
tag-message = "Release version {{version}}"