This moves some of the changes made in https://github.com/zed-industries/zed/pull/39543 to the `publish_gpui` script. This PR also updates that script to use `gpui_` instead of `zed-` (where possible) Release Notes: - N/A
30 lines
551 B
TOML
30 lines
551 B
TOML
[package]
|
|
name = "media"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish = false
|
|
license = "Apache-2.0"
|
|
description = "Bindings to macos media handling APIs for Zed"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/media.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
workspace-hack.workspace = true
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
core-foundation.workspace = true
|
|
ctor.workspace = true
|
|
foreign-types = "0.5"
|
|
metal.workspace = true
|
|
core-video.workspace = true
|
|
objc.workspace = true
|
|
|
|
[build-dependencies]
|
|
bindgen = "0.71"
|