inochi2d-parser 0.2.2

Typed parser and intermediate representation for Inochi2D INP/INX 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 = "2024"
name = "inochi2d-parser"
version = "0.2.2"
authors = ["Huskysis"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Typed parser and intermediate representation for Inochi2D INP/INX files"
readme = "README.md"
keywords = [
    "inochi2d",
    "parser",
    "gamedev",
    "graphics",
]
categories = [
    "parser-implementations",
    "game-development",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Huskysis/inochi2d-parser"

[features]
inr = [
    "dep:serde",
    "dep:serde_json",
    "dep:bytemuck",
]
inr-export = [
    "inr",
    "dep:image",
]

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

[[example]]
name = "inx2inr"
path = "examples/inx2inr.rs"
required-features = ["inr-export"]

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

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

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

[dependencies.bytemuck]
version = "1.25.0"
features = ["extern_crate_alloc"]
optional = true

[dependencies.image]
version = "0.25.10"
features = [
    "png",
    "tga",
]
optional = true
default-features = false

[dependencies.json]
version = "0.12.4"

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

[dependencies.serde_json]
version = "1.0.150"
optional = true

[dev-dependencies.image]
version = "0.25.10"
features = [
    "png",
    "tga",
]
default-features = false