-
Notifications
You must be signed in to change notification settings - Fork 23
/
Cargo.toml
35 lines (29 loc) · 871 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "screencapturekit"
keywords = ["screencapture", "screencapturekit", "macos"]
description = "Rust wrapper for apple's ScreenCaptureKit"
categories = [
"external-ffi-bindings",
"multimedia",
"multimedia::video",
"os::macos-apis",
]
repository = "https://github.com/svtlabs/screencapturekit-rs"
authors = ["Per Johansson <[email protected]>"]
homepage = "https://github.com/svtlabs"
edition = "2021"
rust-version = "1.72"
version = "0.3.0"
license = "MIT OR Apache-2.0"
[lib]
path = "./src/lib.rs"
[features]
ci = []
[dependencies]
core-media-rs = { git = "https://github.com/doom-fish/core-frameworks.git" }
core-utils-rs = { git = "https://github.com/doom-fish/core-frameworks.git" }
objc = { version = "0.2", features = ["exception"] }
block2 = "0.5"
dispatch = "0.2"
core-foundation = { version = "0.10" }
core-graphics = { version = "0.24" }