released vmt-parser

This commit is contained in:
Robin Appelman 2023-12-21 20:48:36 +01:00
commit 53828ef3f8
2 changed files with 8 additions and 3 deletions

6
Cargo.lock generated
View file

@ -2851,7 +2851,8 @@ checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
[[package]]
name = "vdf-reader"
version = "0.1.0"
source = "git+https://github.com/icewind1991/vdf-reader#31977b9340e915944eeb27c96f3199f7c5560376"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bff9669f8e9cf7a82acac623509d7dbd119b4bc90da2469f1e7501097e04c5a3"
dependencies = [
"logos",
"miette",
@ -2902,7 +2903,8 @@ dependencies = [
[[package]]
name = "vmt-parser"
version = "0.1.0"
source = "git+https://github.com/icewind1991/vmt-parser#40ffcb41debc5cc0561255401f48abe9c11d4d32"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1c071256bc38ca5a1f322052106da23ea3cd8bd0a5f18e9a3bd81ad040092bf"
dependencies = [
"miette",
"serde",

View file

@ -2,6 +2,9 @@
name = "vmdl"
version = "0.1.0"
edition = "2021"
description = "Rust parser for valve model files."
repository = "https://github.com/icewind1991/vmdl"
license = "MIT"
exclude = ["data"]
[dependencies]
@ -27,7 +30,7 @@ gltf = "1.3.0"
image = "0.23.14"
clap = { version = "4.4.11", features = ["derive"] }
main_error = "0.1.2"
vmt-parser = { version = "0.1", git = "https://github.com/icewind1991/vmt-parser" }
vmt-parser = "0.1"
tf-asset-loader = "0.1"
[[bench]]