[package]
edition = "2021"
name = "maa-framework-sys"
version = "5.6.0"
authors = ["MaaFramework Contributors"]
build = "build.rs"
exclude = [
"MaaFramework",
"install",
"download_plugins",
".github",
".vscode",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Low-level Rust bindings for MaaFramework"
homepage = "https://github.com/MaaXYZ/MaaFramework"
readme = "README.md"
keywords = [
"maa",
"automation",
"framework",
"binding",
]
categories = [
"api-bindings",
"development-tools",
]
license = "LGPL-3.0"
repository = "https://github.com/MaaXYZ/MaaFramework"
[features]
dynamic = [
"dep:libloading",
"dep:once_cell",
]
generate-bindings = [
"dep:bindgen",
"dep:syn",
"dep:quote",
]
static = []
toolkit = []
[lib]
name = "maa_framework_sys"
path = "src/lib.rs"
[dependencies.libloading]
version = "0.8"
optional = true
[dependencies.once_cell]
version = "1.19"
optional = true
[build-dependencies.bindgen]
version = "0.72"
optional = true
[build-dependencies.quote]
version = "1.0"
optional = true
[build-dependencies.syn]
version = "2.0"
features = [
"full",
"extra-traits",
]
optional = true