Cargo.toml

 1[package]
 2name = "capture"
 3version = "0.1.0"
 4edition = "2021"
 5description = "An example of screen capture"
 6
 7[dependencies]
 8gpui = { path = "../gpui" }
 9live_kit = { path = "../live_kit" }
10media = { path = "../media" }
11
12anyhow = "1.0.38"
13block = "0.1"
14bytes = "1.2"
15byteorder = "1.4"
16cocoa = "0.24"
17core-foundation = "0.9.3"
18core-graphics = "0.22.3"
19foreign-types = "0.3"
20futures = "0.3"
21hmac = "0.12"
22jwt = "0.16"
23log = { version = "0.4.16", features = ["kv_unstable_serde"] }
24objc = "0.2"
25parking_lot = "0.11.1"
26postage = { version = "0.4.1", features = ["futures-traits"] }
27serde = { version = "1.0", features = ["derive", "rc"] }
28sha2 = "0.10"
29simplelog = "0.9"
30
31[build-dependencies]
32bindgen = "0.59.2"