locat 0.1.0

A zero-copy ISO 6709 geographic coordinate parser in Rust.
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"
rust-version = "1.85"
name = "locat"
version = "0.1.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A zero-copy ISO 6709 geographic coordinate parser in Rust."
homepage = "https://github.com/Findit-AI/locat"
documentation = "https://docs.rs/locat"
readme = "README.md"
keywords = [
    "iso6709",
    "geographic",
    "coordinates",
    "latitude",
    "longitude",
]
categories = [
    "parser-implementations",
    "no-std::no-alloc",
    "encoding",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Findit-AI/locat"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
alloc = []
default = ["std"]
std = ["thiserror/std"]

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

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

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

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

[dependencies.derive_more]
version = "2"
features = [
    "display",
    "is_variant",
    "unwrap",
    "try_unwrap",
]
default-features = false

[dependencies.logos]
version = "0.16"
features = ["export_derive"]
default-features = false

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

[dev-dependencies.criterion]
version = "0.8"

[dev-dependencies.tempfile]
version = "3"

[lints.rust]
rust_2018_idioms = "warn"
single_use_lifetimes = "warn"

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
    "cfg(all_tests)",
    "cfg(tarpaulin)",
]

[profile.bench]
opt-level = 3
lto = "thin"
codegen-units = 1
debug = 0
debug-assertions = false
rpath = false
overflow-checks = false
incremental = false