[package]
edition = "2021"
name = "dfhack-remote"
version = "0.11.0"
authors = ["Pierre Lulé <pierre@lule.fr>"]
build = false
exclude = ["images/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Interacting with the Dwarf Fortress remote API exposed by DFHack "
readme = "README.md"
categories = [
"api-bindings",
"game-development",
"games",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/plule/dfhack-remote"
[features]
reflection = ["dfhack-proto/reflection"]
test-with-df = ["reflection"]
[lib]
name = "dfhack_remote"
path = "src/lib.rs"
[[example]]
name = "hello_world"
path = "examples/hello_world.rs"
[[example]]
name = "pause_unpause"
path = "examples/pause_unpause.rs"
[[example]]
name = "read_elevation"
path = "examples/read_elevation.rs"
[[example]]
name = "run"
path = "examples/run.rs"
[dependencies.byteorder]
version = "1.5.0"
[dependencies.derive_more]
version = "2.0"
features = ["display"]
[dependencies.dfhack-proto]
version = "0.11.0"
[dependencies.log]
version = "0.4.26"
[dependencies.num_enum]
version = "0.7.3"
[dependencies.protobuf]
version = "=3.7.2"
[dependencies.thiserror]
version = "2"
[dev-dependencies.bmp]
version = "0.5.0"
[dev-dependencies.ctor]
version = "0.4.1"
[dev-dependencies.env_logger]
version = "0.11.7"
[dev-dependencies.lazy_static]
version = "1.5.0"
[dev-dependencies.rand]
version = "0.9.0"