spatial-narrative 0.1.0

A Rust library for representing, analyzing, and working with narratives that unfold across real-world geographic space
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 = "spatial-narrative"
version = "0.1.0"
authors = ["James Williams"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library for representing, analyzing, and working with narratives that unfold across real-world geographic space"
documentation = "https://docs.rs/spatial-narrative"
readme = "README.md"
keywords = [
    "geospatial",
    "narrative",
    "geography",
    "gis",
    "analysis",
]
categories = [
    "science",
    "data-structures",
    "parsing",
]
license = "MIT"
repository = "https://github.com/jwilliamsresearch/spatial-narrative"

[features]
cli = ["clap"]
database = ["rusqlite"]
default = []
full = [
    "cli",
    "projections",
    "nlp",
    "gpx-support",
    "database",
    "geocoding",
]
geocoding = ["reqwest"]
gpx-support = ["gpx"]
nlp = ["unicode-segmentation"]
projections = ["proj"]

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

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

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

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

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

[dependencies.anyhow]
version = "1.0"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.chrono-tz]
version = "0.10"

[dependencies.clap]
version = "4.5"
features = ["derive"]
optional = true

[dependencies.csv]
version = "1.3"

[dependencies.geo]
version = "0.28"

[dependencies.geo-types]
version = "0.7"

[dependencies.gpx]
version = "0.10"
optional = true

[dependencies.petgraph]
version = "0.6"

[dependencies.proj]
version = "0.27"
optional = true

[dependencies.rayon]
version = "1.10"

[dependencies.regex]
version = "1.10"

[dependencies.reqwest]
version = "0.12"
features = ["json"]
optional = true

[dependencies.rstar]
version = "0.12"

[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "1.0"

[dependencies.unicode-segmentation]
version = "1.11"
optional = true

[dependencies.uuid]
version = "1.10"
features = [
    "v4",
    "serde",
]

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

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

[dev-dependencies.tempfile]
version = "3.10"