jismeshcode 0.2.1

日本標準地域メッシュコード(JIS X 0410)を扱う包括的なRustライブラリ / A comprehensive Rust library for Japanese Standard Grid Square Code
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"
name = "jismeshcode"
version = "0.2.1"
authors = ["uiuifree"]
build = false
exclude = [
    ".idea/",
    ".claude/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "日本標準地域メッシュコード(JIS X 0410)を扱う包括的なRustライブラリ / A comprehensive Rust library for Japanese Standard Grid Square Code"
homepage = "https://github.com/uiuifree/rust-jismeshcode"
documentation = "https://docs.rs/jismeshcode"
readme = "README.md"
keywords = [
    "geospatial",
    "mesh",
    "jis",
    "japan",
    "grid",
]
categories = [
    "science::geo",
    "algorithms",
    "data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/uiuifree/rust-jismeshcode"

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

[features]
default = ["std"]
serde = ["dep:serde"]
std = ["thiserror"]

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

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

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

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

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

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

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

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

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

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

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

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

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

[dependencies.thiserror]
version = "1.0"
optional = true

[dev-dependencies.approx]
version = "0.5"

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

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

[profile.bench]
inherits = "release"

[profile.release]
lto = true
codegen-units = 1
strip = true