1
0
Fork 0
mirror of https://codeberg.org/icewind/vbsp.git synced 2026-06-03 10:44:07 +02:00
vbsp/Cargo.toml
2022-12-05 16:52:03 +01:00

34 lines
805 B
TOML

[package]
name = "vbsp"
version = "0.1.0"
authors = ["Robin Appelman <robin@icewind.nl>"]
homepage = "https://github.com/icewind1991/vbsp"
repository = "https://github.com/icewind1991/vbsp"
description = "Rust parser for valve bsp files."
license = "MIT"
edition = "2021"
readme = "README.md"
exclude = ["*.bsp"]
[dependencies]
arrayvec = "0.7.2"
bitflags = "1.3"
bv = "0.11.1"
thiserror = "1.0.37"
lzma-rs = "0.2.0"
binrw = "0.10.0"
static_assertions = "1.1.0"
num_enum = "0.5.7"
vbsp-derive = { path = "derive", version = "*" }
cgmath = "0.18.0"
zip = { version = "0.6.3", git = "https://github.com/icewind1991/zip", branch = "lzma-decompression", default-features = false, features = ["lzma"] }
[dev-dependencies]
obj = "0.10"
main_error = "0.1.2"
[features]
bench = []
[profile.dev]
opt-level = 2