forked from sorokya/reoserv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (46 loc) · 1.31 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
[package]
name = "reoserv"
version = "1.7.4"
authors = ["Richard Leek <[email protected]>"]
edition = "2021"
description = "The rust powered endless online server emulator"
repository = "https://github.com/sorokya/reoserv"
[profile.release]
panic = 'abort'
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
[features]
console = ["console-subscriber"]
[dependencies]
anyhow = "1.0"
bytes = "1.8"
config = { version = "0.14", features = ["toml", "ron"] }
crc = "3.2.1"
chrono = "0.4"
lazy_static = "1.5"
log = "0.4"
num-traits = "0.2"
pretty_env_logger = "0.5"
futures = "0.3"
tokio = { version = "1", features = ["full", "tracing"] }
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls"] }
glob = "0.3.1"
serde_json = "^1.0.132"
serde_derive = "^1.0.8"
serde = "^1.0.214"
console-subscriber = { version = "0.4", optional = true }
mysql_common = { version = "0.32", features = ["chrono"] }
mysql_async = { version = "0.34", default-features = false, features = ["default-rustls"] }
argon2 = "0.5.3"
eolib = { version = "2.1.0", features = ["use_serde"] }
eoplus = "1.0.0-RC1"
rand = "0.8"
evalexpr = "12.0.1"
duration-str = "0.11.2"
version-compare = "0.2"
mail-send = "0.4.7"
mail-builder = "0.3.2"
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"