rustpak 0.1.3

Rust library and CLI tool for reading and writing GoldSrc .pak archive files
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.70"
name = "rustpak"
version = "0.1.3"
authors = ["Sophie Luna Schumann <me@sophie.lgbt>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust library and CLI tool for reading and writing GoldSrc .pak archive files"
homepage = "https://github.com/SharkyRawr/rustpak"
documentation = "https://docs.rs/rustpak"
readme = "README.md"
keywords = [
    "pak",
    "goldsrc",
    "half-life",
    "gamedev",
    "archive",
]
categories = [
    "encoding",
    "filesystem",
    "game-development",
    "parser-implementations",
]
license = "CC-BY-NC-SA-4.0"
repository = "https://github.com/SharkyRawr/rustpak"

[package.metadata.docs.rs]
all-features = true

[features]
cli = ["clap"]
default = ["cli"]

[lib]
name = "rustpak"
path = "src/lib.rs"

[[bin]]
name = "rustpak"
path = "src/main.rs"
required-features = ["cli"]

[[test]]
name = "pak_test"
path = "tests/pak_test.rs"

[dependencies.byteorder]
version = "1.4"

[dependencies.clap]
version = "4.5"
features = ["derive"]
optional = true