-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
48 lines (42 loc) · 1.01 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
[package]
name = "deucalion"
version = "0.9.3"
authors = ["ff14wed"]
edition = "2021"
build = "build.rs"
[package.metadata.winres]
OriginalFilename = "deucalion.dll"
CompanyName = "Flawed"
LegalCopyright = "Copyright (C) Flawed"
[lib]
name = "deucalion"
crate-type = ["rlib", "dylib"]
[dependencies]
tokio = { version = "1.25.0", features = ["io-util", "sync", "rt", "rt-multi-thread", "net", "time", "macros"] }
tokio-util = { version = "0.7.4", features = ["codec", "compat"] }
futures = "0.3"
anyhow = "1.0"
thiserror = "1.0"
bytes = "1.4.0"
stream-cancel = "0.8.1"
log = "0.4"
simplelog = "0.12"
retour = "0.1.0"
parking_lot = "0.12.1"
pelite = "0.10"
memchr = "2.5"
region = "3.0"
once_cell = "1.17"
binary-layout = "3.1.3"
dirs = "4.0"
strum = "0.24"
strum_macros = "0.24"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = [
"minwindef", "minwinbase", "processthreadsapi", "libloaderapi", "consoleapi", "wincon"
] }
[dev-dependencies]
ntest = "*"
rand = "0.8.5"
[build-dependencies]
winres = "0.1"