[package]
edition = "2021"
rust-version = "1.77"
name = "freerdp-sys"
version = "0.1.0"
authors = ["FreeRDP Rust Bindings Contributors"]
build = "build.rs"
links = "freerdp"
include = [
"src/**/*",
"build.rs",
"cmake/**/*",
"vendor/**/*",
"Cargo.toml",
"README.md",
"LICENSE-MIT",
"LICENSE-APACHE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Low-level Rust FFI bindings to FreeRDP 3.x (Remote Desktop Protocol). Supports vendored CMake builds from source or linking against system-installed FreeRDP. Bindings generated via bindgen. General-purpose — usable by any Rust project needing RDP client/server functionality."
homepage = "https://github.com/GOODBOY008/freerdp-sys"
documentation = "https://docs.rs/freerdp-sys"
readme = "README.md"
keywords = [
"freerdp",
"rdp",
"ffi",
"bindings",
"remote-desktop",
]
categories = [
"external-ffi-bindings",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/GOODBOY008/freerdp-sys"
[package.metadata.docs.rs]
features = ["generate-bindings"]
rustc-args = [
"--cfg",
"docsrs",
]
[features]
default = ["vendored"]
generate-bindings = []
system = []
vendored = []
[lib]
name = "freerdp_sys"
path = "src/lib.rs"
[dependencies]
[build-dependencies.bindgen]
version = "0.71"
[build-dependencies.cmake]
version = "0.1"
[build-dependencies.pkg-config]
version = "0.3"