scirs2-spatial 0.1.4

Spatial algorithms module for SciRS2 (scirs2-spatial)
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"
name = "scirs2-spatial"
version = "0.1.4"
authors = ["COOLJAPAN OU (Team KitaSan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Spatial algorithms module for SciRS2 (scirs2-spatial)"
readme = "README.md"
keywords = [
    "spatial",
    "distance",
    "scientific",
    "scipy",
    "numerical",
]
categories = [
    "science",
    "mathematics",
    "algorithms",
]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/scirs"

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

[features]
cuda = []
default = ["parallel"]
parallel = []
rocm = []
vulkan = []

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[[bench]]
name = "memory_benchmarks"
path = "benches/memory_benchmarks.rs"

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

[[bench]]
name = "performance_comparison"
path = "benches/performance_comparison.rs"

[[bench]]
name = "performance_reports"
path = "benches/performance_reports.rs"

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

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

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

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

[dependencies.approx]
version = "0.5.1"

[dependencies.libc]
version = "0.2.180"

[dependencies.num]
version = "0.4.3"

[dependencies.num-complex]
version = "0.4.6"

[dependencies.num-traits]
version = "0.2.19"

[dependencies.num_cpus]
version = "1.17.0"

[dependencies.rand]
version = "0.9.2"

[dependencies.scirs2-core]
version = "0.1.4"
features = [
    "simd",
    "parallel",
    "linalg",
    "random",
    "types",
]

[dependencies.statrs]
version = "0.18.0"

[dependencies.thiserror]
version = "2.0.18"

[dependencies.tokio]
version = "1.49.0"
features = [
    "full",
    "rt",
    "rt-multi-thread",
]

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

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

[dev-dependencies.num_cpus]
version = "1.17.0"

[dev-dependencies.plotters]
version = "0.3.7"

[dev-dependencies.tokio-test]
version = "0.4.5"

[lints.clippy]
expect_used = "allow"
unwrap_used = "warn"

[lints.rust]
dead_code = "allow"
mismatched_lifetime_syntaxes = "allow"
unknown_lints = "allow"
unpredictable_function_pointer_comparisons = "allow"
unused_imports = "allow"
unused_mut = "allow"
unused_variables = "allow"