nezha/Cargo.toml

27 lines
447 B
TOML
Raw Normal View History

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]
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 }