forked from shekohex/coemu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
61 lines (54 loc) · 1.47 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
[workspace]
package.edition = "2021"
resolver = "2"
members = [
"crates/*",
# Servers
"server/*",
# Utils
"macros/*",
# Cli Tools
"tools/*",
]
[workspace.dependencies]
# Local Dependencies
primitives = { path = "crates/primitives" }
tq-network = { path = "crates/network" }
tq-serde = { path = "crates/serde" }
tq-math = { path = "crates/math" }
tq-crypto = { path = "crates/crypto" }
tq-codec = { path = "crates/codec" }
tq-db = { path = "crates/db" }
derive-packetid = { path = "macros/derive-packetid" }
derive-packethandler = { path = "macros/derive-packethandler" }
# Servers & Libs
auth = { path = "server/auth" }
game = { path = "server/game" }
futures = { version = "0.3", default-features = false }
thiserror = "1.0"
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
bytes = "1.1"
async-trait = "0.1"
tracing = "0.1"
dotenvy = "0.15"
once_cell = "1.4"
bitflags = "2.4"
argh = "0.1"
tokio-stream = "0.1.8"
parking_lot = { version = "0.12.1", default-features = false, features = [] }
rand = "0.8"
arc-swap = { version = "1.6", features = ["weak"] }
atomic = "0.6"
bytemuck = { version = "1.13", features = ["derive"] }
chrono = { version = "0.4", default-features = false, features = ["clock"] }
num_enum = { version = "0.6", default-features = false }
bcrypt = "0.15"
[workspace.dependencies.tokio]
version = "1.21.2"
default-features = false
[workspace.dependencies.sqlx]
default-features = false
version = "0.7.1"
[profile.dev]
split-debuginfo = 'packed'