mirror of
https://github.com/servo/servo
synced 2026-04-25 17:15:48 +02:00
Add a check for formatting of the `Cargo.toml` files to CI, and run `taplo format` to fix existing formatting issues. --------- Signed-off-by: Martin Garton <garton@gmail.com>
21 lines
711 B
TOML
21 lines
711 B
TOML
[package]
|
|
name = "servo-media-auto"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
rust-version.workspace = true
|
|
repository.workspace = true
|
|
description.workspace = true
|
|
|
|
[lib]
|
|
name = "servo_media_auto"
|
|
path = "lib.rs"
|
|
|
|
[target.'cfg(any(all(target_os = "android", any(target_arch = "arm", target_arch = "aarch64")), target_arch = "x86_64",target_arch = "aarch64"))'.dependencies]
|
|
servo-media-gstreamer = { workspace = true }
|
|
|
|
[target.'cfg(not(any(all(target_os = "android", any(target_arch = "arm", target_arch = "aarch64")), target_arch = "x86_64", target_arch = "aarch64")))'.dependencies]
|
|
servo-media-dummy = { workspace = true }
|