28 lines
514 B
TOML
28 lines
514 B
TOML
[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]
|
|
|
|
default = ["pokemmo"]
|
|
|
|
pokemmo = ["screen","ocr","joystick","dep:image"]
|
|
screen = ["dep:screenshots"]
|
|
ocr = []
|
|
joystick = ["dep:enigo"]
|
|
|
|
|
|
|
|
[lib]
|
|
name = "nezha"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
|
|
enigo = { version = "0.1.2", optional = true }
|
|
screenshots = { version = "0.7.0", optional = true }
|
|
image = {version = "0.24.6", optional = true} |