| # Licensed to the Apache Software Foundation (ASF) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The ASF licenses this file |
| # to you under the Apache License, Version 2.0 (the |
| # "License"); you may not use this file except in compliance |
| # with the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, |
| # software distributed under the License is distributed on an |
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| # KIND, either express or implied. See the License for the |
| # specific language governing permissions and limitations |
| # under the License. |
| |
| [package] |
| name = "spatialbench-cli" |
| version = "0.3.0" |
| authors = { workspace = true } |
| description = "Blazing fast pure Rust SpatialBench data generator command line tool." |
| readme = "README.md" |
| edition = { workspace = true } |
| homepage = { workspace = true } |
| license = { workspace = true } |
| repository = { workspace = true } |
| keywords = ["spatial", "geospatial", "benchmark", "cli", "data-generation"] |
| categories = ["science::geo", "database", "command-line-utilities", "development-tools"] |
| |
| [dependencies] |
| arrow = "56" |
| parquet = "56" |
| clap = { version = "4.5.32", features = ["derive"] } |
| spatialbench = { path = "../spatialbench", version = "0.3.0"} |
| spatialbench-arrow = { path = "../spatialbench-arrow", version = "0.3.0" } |
| tokio = { version = "1.44.1", features = ["full"]} |
| futures = "0.3.31" |
| num_cpus = "1.0" |
| log = "0.4.26" |
| env_logger = "0.11.7" |
| serde = { version = "1.0.219", features = ["derive"] } |
| anyhow = "1.0.99" |
| serde_yaml = "0.9.33" |
| datafusion = "50.2" |
| object_store = { version = "0.12.4", features = ["http", "aws"] } |
| arrow-array = "56" |
| arrow-schema = "56" |
| url = "2.5.7" |
| bytes = "1.10.1" |
| |
| [dev-dependencies] |
| assert_cmd = "2.0" |
| predicates = "3.0" |
| tempfile = "3.20.0" |
| flate2 = "1.1.0" |