-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
59 lines (47 loc) · 1.41 KB
/
Cargo.toml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "rsbwapi"
version.workspace = true
authors = ["Dennis Waldherr <bytekeeper@mailbox.org>"]
description = "BWAPI client to write AI players for Starcraft Broodwar"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/Bytekeeper/rsbwapi/"
repository = "https://github.com/Bytekeeper/rsbwapi/"
readme = "README.md"
[workspace]
members = ["bwapi_wrapper", "example_bot"]
[workspace.package]
version = "0.3.4"
[workspace.dependencies]
num-traits = "0.2"
num-derive = "0.4"
derive_more = { version = "1.0.0", features = ["full"] }
image = "0.25"
imageproc = "0.25"
[package.metadata.docs.rs]
targets = ["x86_64-pc-windows-msvc"]
[dependencies]
num-traits.workspace = true
num-derive.workspace = true
derive_more.workspace = true
bwapi_wrapper = { path = "bwapi_wrapper", version = "0.3.3" }
winapi = { version = "0.3", features = ["winbase", "memoryapi", "handleapi"] }
memchr = "2.7"
rstar = "0.12"
itertools = "0.13"
ahash = "0.8"
image = { workspace = true, optional = true }
imageproc = { workspace = true, optional = true }
rusttype = { version = "0.9", optional = true }
metered = { version = "0.9", optional = true}
serde = { version = "1.0", optional = true}
[features]
metrics = ["metered", "serde"]
debug_draw = ["image", "imageproc", "rusttype"]
[dev-dependencies]
inflate = "0.4"
image.workspace = true
imageproc.workspace = true
rusttype = "0.9"
[profile.dev.package."*"]
opt-level=3