-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
90 lines (79 loc) · 2.77 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[workspace.package]
authors = ["Shady Khalifa <dev+coemu@shadykhalifa>"]
edition = "2021"
repository = "https://github.com/shekohex/coemu.git"
license = "GPL-3.0-only"
[workspace]
resolver = "2"
members = [
"crates/*",
# Game Packets
"packets/*",
# Servers
"server/*",
# Utils
"macros/*",
# Cli Tools
"tools/*",
]
exclude = ["tools/benchbot"]
[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", default-features = false }
tq-server = { path = "crates/server" }
tq-bindings = { path = "crates/bindings" }
tq-wasm-builder = { path = "crates/wasm-builder" }
tracing-wasm = { path = "crates/tracing-wasm" }
derive-packetid = { path = "macros/derive-packetid" }
derive-packethandler = { path = "macros/derive-packethandler" }
derive-packetprocessor = { path = "macros/derive-packetprocessor" }
# Servers & Libs
auth = { path = "server/auth" }
game = { path = "server/game" }
# Packets
msg-account = { path = "packets/account" }
msg-connect-ex = { path = "packets/connect-ex" }
msg-connect = { path = "packets/connect" }
msg-transfer = { path = "packets/transfer" }
futures = { version = "0.3", default-features = false }
thiserror = "1.0"
anyhow = "1.0"
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] }
bytes = { version = "1.5", default-features = false }
async-trait = { version = "0.1", default-features = false }
tracing = { version = "0.1", default-features = false }
tracing-core = { version = "0.1", default-features = false }
tracing-subscriber = { version = "0.3", default-features = false }
dotenvy = "0.15"
bitflags = { version = "2.4", default-features = false }
argh = "0.1"
tokio-stream = { version = "0.1.8", default-features = false }
parking_lot = { version = "0.12.1", default-features = false, features = [] }
rand = "0.8"
getrandom = { version = "0.2", default-features = false }
arc-swap = { version = "1.6", features = ["weak"] }
atomic = { version = "0.6", default-features = false }
bytemuck = { version = "1.13", default-features = false, features = ["derive"] }
chrono = { version = "0.4", default-features = false, features = [] }
num_enum = { version = "0.7", default-features = false }
rkyv = { version = "0.7", default-features = false }
bcrypt = "0.15"
# WASM deps
externref = { version = "0.2.0", default-features = false }
[workspace.dependencies.wasmtime]
version = "17.0.0"
default-features = false
[workspace.dependencies.tokio]
version = "1.21.2"
default-features = false
[workspace.dependencies.sqlx]
default-features = false
version = "0.7.3"
[profile.dev]
split-debuginfo = 'packed'