2022-08-26 21:10:26 +00:00
|
|
|
[package]
|
|
|
|
name = "capture"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
description = "An example of screen capture"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
gpui = { path = "../gpui" }
|
2022-09-02 18:56:38 +00:00
|
|
|
live_kit = { path = "../live_kit" }
|
2022-08-31 02:34:59 +00:00
|
|
|
media = { path = "../media" }
|
2022-08-26 21:10:26 +00:00
|
|
|
|
2022-08-31 18:03:47 +00:00
|
|
|
anyhow = "1.0.38"
|
2022-08-26 21:10:26 +00:00
|
|
|
block = "0.1"
|
2022-08-31 18:03:47 +00:00
|
|
|
bytes = "1.2"
|
2022-08-31 19:36:29 +00:00
|
|
|
byteorder = "1.4"
|
2022-08-26 21:10:26 +00:00
|
|
|
cocoa = "0.24"
|
|
|
|
core-foundation = "0.9.3"
|
|
|
|
core-graphics = "0.22.3"
|
|
|
|
foreign-types = "0.3"
|
2022-08-30 17:28:17 +00:00
|
|
|
futures = "0.3"
|
2022-09-06 19:19:17 +00:00
|
|
|
hmac = "0.12"
|
|
|
|
jwt = "0.16"
|
2022-08-26 21:10:26 +00:00
|
|
|
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
|
|
|
|
objc = "0.2"
|
2022-08-30 17:28:17 +00:00
|
|
|
parking_lot = "0.11.1"
|
|
|
|
postage = { version = "0.4.1", features = ["futures-traits"] }
|
2022-09-06 19:19:17 +00:00
|
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
|
|
|
sha2 = "0.10"
|
2022-08-26 21:10:26 +00:00
|
|
|
simplelog = "0.9"
|
2022-08-29 16:00:51 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2022-08-29 22:07:33 +00:00
|
|
|
bindgen = "0.59.2"
|