# 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 = "routrs" version = "2.0.0" description = "Geograph-based shortest distance calculation for Rust" documentation = "https://github.com/deepbludev/routrs" readme = "README.md" license = "MIT" repository = "https://github.com/deepbludev/routrs" [dependencies.flate2] version = "1.0.28" optional = true [dependencies.lazy_static] version = "1.4.0" optional = true [dependencies.rayon] version = "1.5" optional = true [dependencies.routrs_highways_dataset] version = "0.1.0" optional = true [dependencies.routrs_maritime_dataset] version = "0.1.0" optional = true [dependencies.routrs_railways_dataset] version = "0.1.0" optional = true [dependencies.serde] version = "1.0.197" features = ["derive"] optional = true [dependencies.serde_json] version = "1.0.116" optional = true [features] all = [ "highways", "maritime", "railways", "json", "concurrency", ] concurrency = ["rayon"] core = [] default = ["core"] highways = [ "routrs_highways_dataset", "json", "lazy_static", "flate2", ] json = [ "serde", "serde_json", ] maritime = [ "routrs_maritime_dataset", "json", "lazy_static", "flate2", ] railways = [ "routrs_railways_dataset", "json", "lazy_static", "flate2", ]