ds3 0.1.0

Pure-Rust parser for Autodesk 3D Studio (.3ds) binary 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 = "ds3"
version = "0.1.0"
authors = ["BlueJayLouche <bluejaylouche@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust parser for Autodesk 3D Studio (.3ds) binary files"
documentation = "https://docs.rs/ds3"
readme = "README.md"
keywords = [
    "3ds",
    "3d-studio",
    "parser",
    "mesh",
    "geometry",
]
categories = [
    "parser-implementations",
    "rendering::data-formats",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/BlueJayLouche/3ds-rs"

[features]
default = ["std"]
serde = ["dep:serde"]
std = [
    "thiserror/std",
    "serde?/std",
]

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

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

[dependencies.serde]
version = "1.0"
features = [
    "derive",
    "alloc",
]
optional = true
default-features = false

[dependencies.thiserror]
version = "2"
default-features = false

[dev-dependencies]