geo-kit 0.1.0

Typed newtypes for validated geo primitives — postcodes, country codes, coordinates, addresses
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.85"
name = "geo-kit"
version = "0.1.0"
build = false
exclude = ["/target"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Typed newtypes for validated geo primitives — postcodes, country codes, coordinates, addresses"
readme = "README.md"
keywords = [
    "geo",
    "address",
    "postcode",
    "coordinates",
]
categories = ["rust-patterns"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/WyattAu/geo-kit"

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

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

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

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

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

[dependencies.regex]
version = "1"
optional = true

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

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

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

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.proptest]
version = "1"

[dev-dependencies.regex]
version = "1"

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