rpg_base/Cargo.toml

49 lines
1.8 KiB
TOML
Raw Normal View History

2025-02-28 07:43:35 +00:00
[workspace]
resolver = "2"
members = ["character_window", "map", "rpg_components"]
[workspace.dependencies]
destructure_traitobject = "0.3.0"
2025-02-28 18:04:01 +00:00
itertools = "0.14.0"
2025-02-28 07:43:35 +00:00
serde = { version = "1.0.203", features = ["derive"] }
2025-03-18 18:03:33 +00:00
ron = "0.9.0"
2025-02-28 07:43:35 +00:00
paste = "1.0.15"
rayon = "1.10.0"
chrono = { version = "0.4.35", features = ["serde"] }
anyhow = { version = "1.0.86", features = ["backtrace"] }
indexmap = { version = "2.2.6", features = ["rayon"] }
2025-03-10 03:03:56 +00:00
shaderc = { version = "0.9.0", features = ["build-from-source"] }
2025-04-19 15:03:35 +00:00
rusqlite = { version = "0.35.0", features = ["bundled"] }
2025-02-28 07:43:35 +00:00
cgmath = "0.18.0"
http = "1.1.0"
iterchunks = "0.5.0"
reqwest = { version = "0.12.5", features = ["blocking"] }
shared_library = "0.1.9"
gltf = { version = "1.4.1", features = ["extras", "names"] }
2025-02-28 21:04:03 +00:00
mlua = { version = "0.10.0", features = ["lua54", "send", "vendored"] }
2025-02-28 07:43:35 +00:00
public-ip = { version = "0.2.2", default-features = false, features = [
"all-providers",
"tokio-dns-resolver",
] }
async-std = { version = "1.12.0" }
if-addrs = { version = "0.13.0" }
2025-02-28 18:03:56 +00:00
hostname = { version = "0.4.0" }
2025-02-28 07:43:35 +00:00
trust-dns-resolver = { version = "0.23.2" }
openxr = { version = "0.19.0", default-features = false, features = ["static"] }
2025-02-28 21:04:08 +00:00
openvr = { version = "0.7.0" }
2025-02-28 07:43:35 +00:00
sdl2 = { version = "0.37.0" }
syn = { version = "2.0.67", features = ["extra-traits", "full"] }
quote = "1.0.35"
proc-macro2 = "1.0.86"
2025-03-01 00:04:07 +00:00
downcast-rs = "2.0.0"
2025-02-28 07:43:35 +00:00
utilities = { git = "https://gavania.de/hodasemi/utilities.git" }
vulkan-rs = { git = "https://gavania.de/hodasemi/vulkan_lib.git" }
assetpath = { git = "https://gavania.de/hodasemi/vulkan_lib.git" }
audio = { git = "https://gavania.de/hodasemi/audio.git" }
library_loader = { git = "https://gavania.de/hodasemi/vulkan_lib.git" }
ui = { git = "https://gavania.de/hodasemi/ui.git" }
engine = { git = "https://gavania.de/hodasemi/engine.git" }
2025-03-04 17:40:56 +00:00
ecs = { git = "https://gavania.de/hodasemi/ecs.git" }