[package]
edition = "2021"
name = "syphon-core"
version = "0.1.1"
authors = ["BlueJayLouche <bluejaylouche@gmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core Objective-C bindings for Syphon on macOS"
readme = "README.md"
keywords = [
"syphon",
"macos",
"video",
"gpu",
"texture-sharing",
]
categories = [
"os::macos-apis",
"graphics",
"multimedia::video",
]
license = "MIT"
repository = "https://github.com/BlueJayLouche/syphon-rs"
[features]
default = []
logging = ["log/release_max_level_warn"]
max_perf = ["log/release_max_level_off"]
[lib]
name = "syphon_core"
path = "src/lib.rs"
[[example]]
name = "input_test"
path = "examples/input_test.rs"
[[example]]
name = "simple_client"
path = "examples/simple_client.rs"
[dependencies.log]
version = "0.4"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.crossbeam]
version = "0.8"
[dev-dependencies.env_logger]
version = "0.11"
[target.'cfg(target_os = "macos")'.dependencies.block]
version = "0.1"
[target.'cfg(target_os = "macos")'.dependencies.cocoa]
version = "0.26"
[target.'cfg(target_os = "macos")'.dependencies.core-foundation]
version = "0.10"
[target.'cfg(target_os = "macos")'.dependencies.core-graphics]
version = "0.25"
[target.'cfg(target_os = "macos")'.dependencies.io-surface]
version = "0.16"
[target.'cfg(target_os = "macos")'.dependencies.libc]
version = "0.2"
[target.'cfg(target_os = "macos")'.dependencies.objc]
version = "0.2"
[target.'cfg(target_os = "macos")'.dependencies.objc-foundation]
version = "0.1"
[target.'cfg(target_os = "macos")'.dependencies.objc_id]
version = "0.1"