cimengine-build-tools/Cargo.toml

29 lines
704 B
TOML
Raw Normal View History

2024-04-24 18:52:28 +03:00
[package]
2024-05-30 12:56:58 +03:00
name = "cimengine"
2024-04-24 18:52:28 +03:00
version = "2.0.0"
edition = "2021"
2024-05-30 12:56:58 +03:00
authors = ["artegoser"]
license = "MIT"
description = "Country info map engine build tools"
repository = "https://github.com/CIMEngine/cimengine"
readme = "./README.md"
keywords = ["geo", "geospatial", "build", "tools", "cli"]
categories = ["command-line-utilities"]
2024-04-24 18:52:28 +03:00
[dependencies]
clap = { version = "4.5.4", features = ["derive"] }
geo = "0.28.0"
geojson = { version = "0.24.1", features = ["geo-types"] }
2024-04-24 18:52:28 +03:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2024-04-24 19:51:02 +03:00
toml = "0.8.12"
2024-04-24 18:52:28 +03:00
toml_edit = "0.22.12"
wax = "0.6.0"
2024-04-25 14:03:08 +03:00
xxhash-rust = { version = "0.8.10", features = ["xxh3"] }
2024-04-24 18:52:28 +03:00
[[bin]]
name = "cimengine"
path = "src/main.rs"