2023-07-27 18:40:06 +08:00
|
|
|
[package]
|
|
|
|
name = "nezha"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
2023-08-01 00:19:05 +08:00
|
|
|
default = ["pokemmo"]
|
2023-07-27 18:40:06 +08:00
|
|
|
|
2023-08-01 00:19:05 +08:00
|
|
|
pokemmo = ["screen","ocr","joystick","dep:image"]
|
2023-07-27 18:40:06 +08:00
|
|
|
screen = ["dep:screenshots"]
|
|
|
|
ocr = []
|
|
|
|
joystick = ["dep:enigo"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "nezha"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
|
|
|
enigo = { version = "0.1.2", optional = true }
|
2023-08-01 00:19:05 +08:00
|
|
|
screenshots = { version = "0.7.0", optional = true }
|
|
|
|
image = {version = "0.24.6", optional = true}
|