puz-parse 0.1.3

A Rust library for parsing .puz crossword puzzle 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.78.0"
name = "puz-parse"
version = "0.1.3"
authors = ["mwln <your-email@example.com>"]
build = false
exclude = [
    "examples/data/*.puz",
    "target/",
    ".git/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library for parsing .puz crossword puzzle files"
homepage = "https://github.com/mwln/puz.rs"
documentation = "https://docs.rs/puz-parse"
readme = "README.md"
keywords = [
    "crossword",
    "parser",
    "puz",
    "puzzle",
    "binary-format",
]
categories = [
    "parser-implementations",
    "encoding",
    "games",
]
license = "MIT"
repository = "https://github.com/mwln/puz.rs"

[features]
default = []
json = ["serde"]

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

[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"

[[example]]
name = "read-with-file"
path = "examples/read-with-file.rs"

[dependencies.byteorder]
version = "1.4.3"

[dependencies.serde]
version = "1.0.210"
features = ["derive"]
optional = true