[package]
edition = "2024"
rust-version = "1.85"
name = "openstranded-map-tool"
version = "0.1.0"
build = false
exclude = [
"/.gitignore",
"Cargo.lock",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Convert Stranded II .s2 map files to .osmap (OpenStranded MAP) format"
homepage = "https://github.com/OpenStranded/map-tool"
documentation = "https://docs.rs/openstranded-map-tool"
readme = "README.md"
keywords = [
"stranded",
"osmap",
"map",
"openstranded",
"converter",
]
categories = [
"game-development",
"parser-implementations",
]
license = "GPL-3.0-or-later"
repository = "https://github.com/OpenStranded/map-tool"
resolver = "2"
[features]
cli = ["clap"]
default = ["cli"]
[lib]
name = "openstranded_map_tool"
path = "src/lib.rs"
[[bin]]
name = "openstranded-map-tool"
path = "src/main.rs"
required-features = ["cli"]
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
optional = true
[dependencies.ron]
version = "0.12"
[dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.tempfile]
version = "3"