vulture 0.24.0

Rust implementation of RAPTOR (Round-bAsed Public Transit Routing)
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"
name = "vulture"
version = "0.24.0"
authors = ["Stephan Hügel <urschrei@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust implementation of RAPTOR (Round-bAsed Public Transit Routing)"
documentation = "https://docs.rs/vulture"
readme = "README.md"
keywords = [
    "raptor",
    "routing",
    "gtfs",
    "transport",
]
license = "Apache-2.0"
repository = "https://github.com/urschrei/vulture"

[features]
default = ["parallel"]
dotgraph = ["dep:dot_graph"]
gtfs-bench = []
internal = []
parallel = ["dep:rayon"]

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

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

[[example]]
name = "check-duplicates"
path = "examples/check-duplicates.rs"

[[example]]
name = "check-monotonic"
path = "examples/check-monotonic.rs"

[[example]]
name = "cross-city-bench"
path = "examples/cross-city-bench.rs"

[[example]]
name = "cross-city-bench-json"
path = "examples/cross-city-bench-json.rs"

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

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

[[example]]
name = "gtfs-timetable"
path = "examples/gtfs-timetable.rs"

[[example]]
name = "profile-delhi"
path = "examples/profile-delhi.rs"

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

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

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

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

[[bench]]
name = "gtfs"
path = "benches/gtfs.rs"
harness = false
required-features = ["gtfs-bench"]

[[bench]]
name = "raptor"
path = "benches/raptor.rs"
harness = false
required-features = ["internal"]

[dependencies.chrono]
version = "0.4"
default-features = false

[dependencies.dot_graph]
version = "0.2"
optional = true

[dependencies.fixedbitset]
version = "0.5"

[dependencies.gtfs-structures]
version = "0.47.0"
default-features = false

[dependencies.jiff]
version = "0.2"

[dependencies.log]
version = "0.4.29"

[dependencies.rayon]
version = "1.10"
optional = true

[dependencies.rstar]
version = "0.12"

[dependencies.rustc-hash]
version = "2"

[dependencies.smallvec]
version = "1.15.1"
features = ["const_generics"]

[dependencies.thiserror]
version = "2.0.18"

[dev-dependencies.anyhow]
version = "1.0.100"

[dev-dependencies.criterion]
version = "0.8"
features = [
    "html_reports",
    "csv_output",
]

[dev-dependencies.env_logger]
version = "0.11"

[dev-dependencies.humantime]
version = "2"

[dev-dependencies.serde]
version = "1"
features = ["derive"]

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