27 lines
447 B
TOML
27 lines
447 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 = ["screen","ocr","joystick"]
|
||
|
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 }
|