mb_vin 0.8.0

A zero-copy parsing and validating vehicle identification numbers (VINs).
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.81.0"
name = "mb_vin"
version = "0.8.0"
authors = ["murilo ijanc' <mbsd@m0x.ru>"]
build = false
include = [
    "LICENSE",
    "README.md",
    "benches/*",
    "examples/*",
    "src/*",
]
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A zero-copy parsing and validating vehicle identification numbers (VINs)."
homepage = "https://mb-vin.microbio.rs"
readme = "README.md"
keywords = [
    "parser",
    "vin",
    "validation",
    "vehicle",
    "automotive",
]
categories = [
    "parsing",
    "data-structures",
]
license = "ISC"
repository = "https://git.sr.ht/~microbio/mb-vin"

[profile.bench]
opt-level = 3
lto = "fat"
codegen-units = 1
inherits = "release"

[profile.dev]
debug = 0

[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
debug = 0
panic = "abort"
incremental = false
strip = true

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

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

[[bench]]
name = "vin"
path = "benches/vin.rs"
harness = false

[dependencies.phf]
version = "0.11.3"
features = ["macros"]
optional = true

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

[dependencies.wide]
version = "0.7.32"
optional = true

[dev-dependencies.criterion]
version = "0.5.1"
default-features = false

[dev-dependencies.serde_json]
version = "1.0.140"

[features]
default = []
phf = ["dep:phf"]
serde = ["dep:serde"]
simd = ["wide"]