[package]
edition = "2021"
name = "rasterfakers"
version = "0.2.0"
authors = ["Prayag Thakkar <th.prayag@outlook.com>"]
exclude = [
"/target",
"/.git",
"/.github",
"/.vscode",
]
description = "A Rust library and CLI tool to generate fake GeoTIFF files for testing and fixtures."
homepage = "https://github.com/pt20/rasterfakers"
documentation = "https://docs.rs/rasterfakers"
readme = "README.md"
keywords = [
"geotiff",
"testing",
"fixtures",
"gis",
"raster",
]
categories = [
"command-line-utilities",
"development-tools::testing",
]
license = "MIT"
repository = "https://github.com/pt20/rasterfakers"
[lib]
name = "rasterfakers"
path = "src/lib.rs"
[[bin]]
name = "rasterfakers"
path = "src/main.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "custom_pattern"
path = "examples/custom_pattern.rs"
[[example]]
name = "multiband"
path = "examples/multiband.rs"
[[example]]
name = "cog"
path = "examples/cog.rs"
[dependencies.clap]
version = "4.5.17"
features = ["derive"]
[dependencies.gdal]
version = "0.17.0"
features = ["bindgen"]
[dependencies.thiserror]
version = "1.0.63"