-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (32 loc) · 862 Bytes
/
Cargo.toml
File metadata and controls
39 lines (32 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[workspace]
members = [".", "dfhack-proto", "dfhack-proto-srcs"]
[workspace.package]
version = "0.12.0"
authors = ["Pierre Lulé <pierre@lule.fr>"]
[package]
name = "dfhack-remote"
version.workspace = true
authors.workspace = true
edition = "2021"
description = "Interacting with the Dwarf Fortress remote API exposed by DFHack "
readme = "README.md"
repository = "https://github.com/plule/dfhack-remote"
license = "MIT OR Apache-2.0"
categories = ["api-bindings", "game-development", "games"]
exclude = ["images/"]
[dependencies]
prost = "0.14"
byteorder = "1"
num_enum = "0.7"
log = "0.4"
derive_more = { version = "2", features = ["display"] }
dfhack-proto = { version = "0.12.0", path = "dfhack-proto" }
thiserror = "2"
[dev-dependencies]
bmp = "0.5.0"
ctor = "0.6"
lazy_static = "1.5.0"
rand = "0.10"
env_logger = "0.11"
[features]
test-with-df = []