-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
89 lines (85 loc) · 3.99 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
[package]
name = "rose-offline-client"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.4"
arrayvec = "0.7"
async-trait = "0.1"
bevy_egui = "0.21"
bevy-inspector-egui = "0.19"
bevy_rapier3d = "0.22"
bitflags = "2.3"
bytemuck = { version = "1.7.0", features = ["derive"] }
chrono = "0.4"
clap = "3.2"
cpal = "0.15"
crossbeam-channel = "0.5"
directories = "5.0"
dolly = "0.4.2"
egui = "0.22"
egui_extras = "0.22"
enum-map = { version = "2.0", features = ["serde"] }
glam = "0.24.1"
hound = "3.4"
image = { version = "0.24", default-features = false, features = ["dds", "ico", "tga"] }
lazy_static = "1.4.0"
lewton = "0.10"
log = "0.4.14"
md5 = "0.7.0"
num-derive = "0.4"
num-traits = "0.2"
oddio = "0.6"
pelite = "0.10.0"
rand = "0.8"
serde = "1.0"
thiserror = "1.0"
tokio = { version = "1.17", features = ["rt", "net", "sync", "macros", "io-util"] }
toml = "0.7.2"
quick-xml = { version = "0.26.0", features = ["serialize"] }
regex = "1"
rose-data = { git = "https://github.com/exjam/rose-offline", rev = "a5b62c5ca163c93367037ba68ad963143d72d93c" }
rose-data-irose = { git = "https://github.com/exjam/rose-offline", rev = "a5b62c5ca163c93367037ba68ad963143d72d93c" }
rose-file-readers = { git = "https://github.com/exjam/rose-offline", rev = "a5b62c5ca163c93367037ba68ad963143d72d93c" }
rose-game-common = { git = "https://github.com/exjam/rose-offline", rev = "a5b62c5ca163c93367037ba68ad963143d72d93c" }
rose-game-irose = { git = "https://github.com/exjam/rose-offline", rev = "a5b62c5ca163c93367037ba68ad963143d72d93c" }
rose-network-common = { git = "https://github.com/exjam/rose-offline", rev = "a5b62c5ca163c93367037ba68ad963143d72d93c" }
rose-network-irose = { git = "https://github.com/exjam/rose-offline", rev = "a5b62c5ca163c93367037ba68ad963143d72d93c" }
[dependencies.bevy]
version = "0.11.3"
default-features = false
features = [
"bevy_asset",
"bevy_winit",
"bevy_core_pipeline",
"bevy_pbr",
"bevy_render",
"multi-threaded",
"dds",
"tga",
"x11",
"bevy_gizmos",
]
[patch.crates-io]
bevy = { git = "https://github.com/exjam/bevy", rev = "b3b09ca110d42b406e7453ccda8394bc1b03440c" }
bevy_egui = { git = "https://github.com/exjam/bevy_egui", rev = "cc94933c647ed4e6cba48a559f70cc69cb2f1708" }
dolly = { git = "https://github.com/exjam/dolly", rev = "007862856f95c2b75b1e18ade4f4e35cfe6829a5" }
egui = { git = "https://github.com/exjam/egui", rev = "cc52964889bf41d3268a553836515f7e17fc6e48" }
oddio = { git = "https://github.com/exjam/oddio", rev = "3c20292903fe629d7eab08c1790db70b9fddac96" }
pelite = { git = "https://github.com/exjam/pelite", rev = "750b4aea126b1248b46e52cf2b9ad288d01e698c" }
winit = { git = "https://github.com/exjam/winit", rev = "5c5519c5c192e1eb6eda5f3420d467131d3273bb" }
# Thanks bevy-inspector-egui
bevy_app = { git = "https://github.com/exjam/bevy", rev = "b3b09ca110d42b406e7453ccda8394bc1b03440c" }
bevy_asset = { git = "https://github.com/exjam/bevy", rev = "b3b09ca110d42b406e7453ccda8394bc1b03440c" }
bevy_core = { git = "https://github.com/exjam/bevy", rev = "b3b09ca110d42b406e7453ccda8394bc1b03440c" }
bevy_ecs = { git = "https://github.com/exjam/bevy", rev = "b3b09ca110d42b406e7453ccda8394bc1b03440c" }
bevy_hierarchy = { git = "https://github.com/exjam/bevy", rev = "b3b09ca110d42b406e7453ccda8394bc1b03440c" }
bevy_log = { git = "https://github.com/exjam/bevy", rev = "b3b09ca110d42b406e7453ccda8394bc1b03440c" }
bevy_math = { git = "https://github.com/exjam/bevy", rev = "b3b09ca110d42b406e7453ccda8394bc1b03440c" }
bevy_reflect = { git = "https://github.com/exjam/bevy", rev = "b3b09ca110d42b406e7453ccda8394bc1b03440c" }
bevy_utils = { git = "https://github.com/exjam/bevy", rev = "b3b09ca110d42b406e7453ccda8394bc1b03440c" }
bevy_core_pipeline = { git = "https://github.com/exjam/bevy", rev = "b3b09ca110d42b406e7453ccda8394bc1b03440c" }
bevy_pbr = { git = "https://github.com/exjam/bevy", rev = "b3b09ca110d42b406e7453ccda8394bc1b03440c" }
bevy_render = { git = "https://github.com/exjam/bevy", rev = "b3b09ca110d42b406e7453ccda8394bc1b03440c" }
[profile.dev.package."*"]
opt-level = 3