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>
24 lines
561 B
TOML
24 lines
561 B
TOML
[package]
|
|
name = "servo-media-player"
|
|
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_player"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
serde = "1.0.66"
|
|
serde_derive = "1.0.66"
|
|
ipc-channel = { workspace = true }
|
|
malloc_size_of = { workspace = true }
|
|
malloc_size_of_derive = { workspace = true }
|
|
servo-media-streams = { workspace = true }
|
|
servo-media-traits = { workspace = true }
|