oxigdal-streaming 0.1.7

Real-time data processing and streaming pipelines for OxiGDAL
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"
rust-version = "1.95"
name = "oxigdal-streaming"
version = "0.1.7"
authors = ["COOLJAPAN OU (Team Kitasan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Real-time data processing and streaming pipelines for OxiGDAL"
homepage = "https://github.com/cool-japan/oxigdal"
documentation = "https://docs.rs/oxigdal-streaming"
readme = "README.md"
keywords = [
    "science",
    "streaming",
    "real-time",
    "pipelines",
    "gis",
]
categories = [
    "science",
    "asynchronous",
    "data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxigdal"
resolver = "2"

[package.metadata.docs.rs]
features = [
    "std",
    "raster-streaming",
    "kv-store",
]
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
cloud-http = [
    "std",
    "dep:reqwest",
]
default = [
    "std",
    "raster-streaming",
]
kv-store = [
    "dep:oxistore-core",
    "dep:oxistore-kv-fjall",
]
raster-streaming = [
    "std",
    "dep:oxigdal-geotiff",
    "oxigdal-geotiff/std",
]
std = [
    "oxigdal-core/std",
    "thiserror/std",
    "serde/std",
    "dep:serde_json",
    "dep:tokio",
    "dep:futures",
    "dep:async-trait",
    "dep:arrow",
    "dep:arrow-array",
    "dep:arrow-schema",
    "dep:arrow-buffer",
    "dep:chrono",
    "dep:parking_lot",
    "dep:crossbeam",
    "dep:crossbeam-channel",
    "dep:dashmap",
    "dep:lru",
    "dep:tracing",
    "dep:bytes",
    "dep:ahash",
    "dep:byteorder",
    "dep:num-traits",
]
tile-http = [
    "std",
    "dep:reqwest",
]

[lib]
name = "oxigdal_streaming"
path = "src/lib.rs"
doctest = false

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

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

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

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

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

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

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

[dependencies.ahash]
version = "0.8"
features = ["serde"]
optional = true

[dependencies.arrow]
version = "59"
optional = true
default-features = false

[dependencies.arrow-array]
version = "59"
optional = true

[dependencies.arrow-buffer]
version = "59"
optional = true

[dependencies.arrow-schema]
version = "59"
optional = true

[dependencies.async-trait]
version = "0.1"
optional = true

[dependencies.byteorder]
version = "1"
optional = true

[dependencies.bytes]
version = "1"
features = ["serde"]
optional = true

[dependencies.chrono]
version = "0.4"
features = [
    "clock",
    "serde",
]
optional = true
default-features = false

[dependencies.crossbeam]
version = "0.8"
optional = true

[dependencies.crossbeam-channel]
version = "0.5"
optional = true

[dependencies.dashmap]
version = "6"
optional = true

[dependencies.futures]
version = "0.3"
optional = true

[dependencies.lru]
version = "0.18"
optional = true

[dependencies.num-traits]
version = "0.2"
optional = true

[dependencies.oxicode]
version = "0.2.4"

[dependencies.oxigdal-core]
version = "0.1.7"

[dependencies.oxigdal-geotiff]
version = "0.1.7"
optional = true

[dependencies.oxistore-core]
version = "0.2.0"
optional = true
default-features = false

[dependencies.oxistore-kv-fjall]
version = "0.2.0"
optional = true
default-features = false

[dependencies.parking_lot]
version = "0.12"
optional = true

[dependencies.reqwest]
version = "0.13"
features = [
    "rustls",
    "blocking",
    "json",
]
optional = true
default-features = false

[dependencies.serde]
version = "1"
features = [
    "derive",
    "alloc",
]
default-features = false

[dependencies.serde_json]
version = "1"
optional = true

[dependencies.thiserror]
version = "2"
default-features = false

[dependencies.tokio]
version = "1"
features = ["full"]
optional = true

[dependencies.tracing]
version = "0.1"
optional = true

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

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

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

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

[dev-dependencies.tokio]
version = "1"
features = ["full"]

[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]

[lints.clippy]
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
doc_markdown = "allow"
expect_used = "warn"
manual_midpoint = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
panic = "deny"
similar_names = "allow"
suboptimal_flops = "allow"
unwrap_used = "deny"

[lints.rust]
missing_docs = "warn"
unsafe_code = "warn"