deps from git

This commit is contained in:
Robin Appelman 2022-03-20 16:17:56 +01:00
commit 60616fbef6
2 changed files with 8 additions and 3 deletions

5
Cargo.lock generated
View file

@ -2669,6 +2669,7 @@ checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
[[package]]
name = "vbsp"
version = "0.1.0"
source = "git+https://github.com/icewind1991/vbsp#6f959a019c8e40d914fe6cac916a8abdb37f37b3"
dependencies = [
"arrayvec 0.7.2",
"binrw",
@ -2686,6 +2687,7 @@ dependencies = [
[[package]]
name = "vbsp-derive"
version = "0.1.0"
source = "git+https://github.com/icewind1991/vbsp#6f959a019c8e40d914fe6cac916a8abdb37f37b3"
dependencies = [
"proc-macro2",
"quote",
@ -2728,6 +2730,7 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[package]]
name = "vmdl"
version = "0.1.0"
source = "git+https://github.com/icewind1991/vmdl#bb4dfddde2dc226d2b278a56cbd610d43ddcb397"
dependencies = [
"arrayvec 0.7.2",
"bitflags",
@ -2741,6 +2744,7 @@ dependencies = [
[[package]]
name = "vpk"
version = "0.1.4"
source = "git+https://github.com/icewind1991/vpk-rs?branch=perf#38e69cf684494f4505e111ffdcd82468af8192e9"
dependencies = [
"ahash",
"binread",
@ -3066,6 +3070,7 @@ checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3"
[[package]]
name = "zip"
version = "0.5.13"
source = "git+https://github.com/icewind1991/zip?branch=lzma-decompression#1b4f85e58dc2d24887a02a3a8014a4f6950c9e92"
dependencies = [
"byteorder 1.4.3",
"crc32fast",

View file

@ -7,14 +7,14 @@ license = "MIT"
[dependencies]
three-d = "0.10.2"
vbsp = { version = "0.1.0", path = "../bsp" }
vbsp = { version = "0.1.0", git = "https://github.com/icewind1991/vbsp" }
miette = { version = "4.2.1", features = ["fancy"] }
thiserror = "1.0.30"
delaunator = "1.0.1"
itertools = "0.10.3"
steamlocate = "1.0.1"
vpk = { version = "0.1.4", path = "../vpk-rs" }
vmdl = { version = "*", path = "../vmdl" }
vpk = { version = "0.1.4", git = "https://github.com/icewind1991/vpk-rs", branch = "perf" }
vmdl = { version = "*", git = "https://github.com/icewind1991/vmdl" }
tracing = "0.1.29"
tracing-subscriber = { version = "0.3.3", features = ["env-filter"] }
tracing-tree = "0.2.0"