mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
21 lines
473 B
TOML
21 lines
473 B
TOML
[package]
|
|
name = "msg"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "msg"
|
|
path = "lib.rs"
|
|
|
|
[features]
|
|
unstable = ["nonzero/unstable"]
|
|
|
|
[dependencies]
|
|
bitflags = "0.7"
|
|
malloc_size_of = { path = "../malloc_size_of" }
|
|
malloc_size_of_derive = { path = "../malloc_size_of_derive" }
|
|
nonzero = {path = "../nonzero"}
|
|
serde = "1.0.14"
|
|
webrender_api = {git = "https://github.com/servo/webrender", features = ["ipc"]}
|