-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
30 lines (25 loc) · 897 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
[package]
name = "captis"
version = "0.6.1"
rust-version = "1.56"
edition = "2021"
authors = ["[email protected]"]
description = "A Screen capturing library built for Linux, Windows and MacOS."
readme = "README.md"
homepage = "https://github.com/crewnew/captis"
license = "MIT"
keywords = ["screenshot", "screen", "capture"]
categories = ["computer-vision", "multimedia::images"]
documentation = "https://docs.rs/captis"
[dependencies]
image = { version = "0.24.3", default-features = false}
[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3.9", features = ["std", "winuser", "windef", "minwindef", "wingdi"] }
[target.'cfg(target_os = "linux")'.dependencies]
x11rb = { version = "0.10.1", features = ["randr", "shm"] }
libc = "0.2.126"
[target.'cfg(target_os = "macos")'.dependencies]
core-graphics = "0.22.3"
[profile.release]
lto = "fat"
strip = "symbols"