[package]
edition = "2021"
name = "fcb_core"
version = "0.7.2"
authors = ["Hidemichi Baba <baba.papa1120.ba@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "FlatCityBuf is a library for reading and writing CityJSON with FlatBuffers. Contains code derived from FlatGeobuf (BSD-2-Clause) for spatial indexing."
readme = "README.md"
keywords = [
"cityjson",
"flatbuffers",
"geospatial",
"3d",
"gis",
]
categories = [
"encoding",
"data-structures",
"science::geo",
]
license = "MIT"
repository = "https://github.com/HideBa/flatcitybuf"
[features]
default = ["http"]
http = [
"http-range-client",
"bytes",
]
[lib]
name = "fcb_core"
path = "src/lib.rs"
[[bin]]
name = "read"
path = "src/bin/read.rs"
[[bin]]
name = "read_attr"
path = "src/bin/read_attr.rs"
[[bin]]
name = "read_attr_stream"
path = "src/bin/read_attr_stream.rs"
[[bin]]
name = "read_cj"
path = "src/bin/read_cj.rs"
[[bin]]
name = "stats"
path = "src/bin/stats.rs"
[[bin]]
name = "write"
path = "src/bin/write.rs"
[[test]]
name = "attr_index"
path = "tests/attr_index.rs"
[[test]]
name = "e2e"
path = "tests/e2e.rs"
[[test]]
name = "http"
path = "tests/http.rs"
[[test]]
name = "read"
path = "tests/read.rs"
[[bench]]
name = "read"
path = "benches/read.rs"
harness = false
[[bench]]
name = "read_attr"
path = "benches/read_attr.rs"
harness = false
[[bench]]
name = "read_func"
path = "benches/read_func.rs"
harness = false
[[bench]]
name = "read_http"
path = "benches/read_http.rs"
harness = false
[[bench]]
name = "read_profile"
path = "benches/read_profile.rs"
[dependencies.anyhow]
version = "1.0.95"
[dependencies.async-trait]
version = "0.1.85"
default-features = true
[dependencies.bson]
version = "2.13.0"
[dependencies.byteorder]
version = "1.5.0"
[dependencies.bytes]
version = "1.9.0"
optional = true
[dependencies.chrono]
version = "0.4"
[dependencies.cjseq]
version = "0.1.0"
package = "cjseq2"
[dependencies.clap]
version = "4.5.23"
[dependencies.fallible-streaming-iterator]
version = "0.1.9"
[dependencies.flatbuffers]
version = "24.3.25"
[dependencies.http-range-client]
version = "0.9.0"
features = ["reqwest-async"]
optional = true
default-features = false
[dependencies.log]
version = "0.4"
[dependencies.ordered-float]
version = "4.6.0"
[dependencies.prettytable]
version = "0.10.0"
[dependencies.rand]
version = "0.8.5"
[dependencies.regex]
version = "1.11.0"
[dependencies.serde]
version = "1.0.200"
[dependencies.serde_cbor]
version = "0.10"
[dependencies.serde_json]
version = "1.0.133"
[dependencies.tempfile]
version = "3.14.0"
[dependencies.thiserror]
version = "2.0.11"
[dependencies.tracing]
version = "0.1.41"
[dev-dependencies.async-trait]
version = "0.1.85"
default-features = true
[dev-dependencies.criterion]
version = "0.5.1"
features = [
"async_tokio",
"html_reports",
"async_tokio",
"html_reports",
]
[dev-dependencies.env_logger]
version = "0.11.5"
[dev-dependencies.libc]
version = "0.2.172"
[dev-dependencies.memory-stats]
version = "1.2.0"
[dev-dependencies.pretty_assertions]
version = "1.4.1"
[dev-dependencies.sysinfo]
version = "0.35.0"
[dev-dependencies.tokio]
version = "1.43.0"
features = [
"macros",
"rt-multi-thread",
"macros",
"rt-multi-thread",
]
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.reqwest]
version = "0.12.12"
features = [
"json",
"rustls-tls",
"stream",
]
default-features = false