Cargo.toml

 1[package]
 2name = "media"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6license = "Apache-2.0"
 7
 8[lib]
 9path = "src/media.rs"
10doctest = false
11
12[dependencies]
13anyhow.workspace = true
14
15[target.'cfg(target_os = "macos")'.dependencies]
16core-foundation.workspace = true
17foreign-types = "0.5"
18metal = "0.25"
19objc = "0.2"
20
21[build-dependencies]
22bindgen = "0.65.1"