-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (39 loc) · 1.12 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
[package]
name = "maa-framework"
description = "Rust bindings for MaaFramework"
version = "0.5.0"
edition = "2021"
license = "LGPL-3.0"
homepage = "https://github.com/MaaAssistantArknights/MaaFramework"
repository = "https://github.com/MaaAssistantArknights/MaaFramework"
readme = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
derive_builder = "0.20.0"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
serde_with = "3.7.0"
thiserror = "^1.0"
tokio = { version = "1.38.0", default-features = false,features = ["rt"], optional = true }
[build-dependencies]
bindgen = "0.69.4"
ureq = "2.9.6"
zip = { version = "2.1.3", default-features = false, features = ["deflate"] }
[features]
default = ["toolkit", "adb", "win32", "dbg", "custom", "internal"]
toolkit = []
adb = []
win32 = []
dbg = []
custom = [
"custom_recognizer",
"custom_controller",
"custom_action",
"sync_context",
]
custom_recognizer = ["sync_context"]
custom_controller = ["sync_context"]
custom_action = ["sync_context"]
sync_context = []
internal = []
download = []