-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
64 lines (60 loc) · 1.49 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
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["James Benton <[email protected]>"]
[workspace]
resolver = "2"
members = [
"rose-data",
"rose-data-irose",
"rose-file-readers",
"rose-game-common",
"rose-game-irose",
"rose-network-common",
"rose-network-irose",
"rose-offline-server",
"rose-offline-tools/rose-conv",
"rose-offline-tools/rose-vfs-dump",
]
[workspace.dependencies]
aes = "0.8.1"
anyhow = "1.0"
arrayvec = "0.7"
async-trait = "0.1"
bevy = { version = "0.11.3", default-features = false }
big-brain = { version = "0.18", features = [] }
bitflags = "2.3"
bitvec = { version = "1.0", features = ["serde"] }
bytes = "1.1"
chrono = "0.4"
clap = "3.2"
crossbeam-channel = "0.5"
ctr = "0.9.1"
directories = "5.0.1"
encoding_rs = "0.8"
enum-map = { version = "2.0", features = ["serde"] }
flate2 = "1.0"
hex = "0.4"
lazy_static = "1.4"
log = "0.4"
md5 = "0.7"
memmap = "0.7"
modular-bitfield = "0.11"
num-derive = "0.4"
num-traits = "0.2"
rand = "0.8"
schemars = "0.8"
scopeguard = "1.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
sha2 = "0.10"
shellwords = "1.1"
simplelog = "0.12"
tempfile = "3.3"
thiserror = "1.0"
tokio = { version = "1.17", default-features = false, features = ["rt", "rt-multi-thread", "net", "sync", "macros", "io-util"] }
[patch.crates-io]
bevy = { git = "https://github.com/exjam/bevy", rev = "b3b09ca110d42b406e7453ccda8394bc1b03440c" }
[profile.dev.package."*"]
opt-level = 3