mirror of
https://github.com/servo/servo
synced 2026-05-01 20:07:22 +02:00
38 lines
856 B
TOML
38 lines
856 B
TOML
[package]
|
|
name = "msg"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "msg"
|
|
path = "lib.rs"
|
|
|
|
[dependencies.util]
|
|
path = "../util"
|
|
|
|
[dependencies.layers]
|
|
git = "https://github.com/servo/rust-layers"
|
|
features = ["plugins"]
|
|
|
|
[dependencies.ipc-channel]
|
|
git = "https://github.com/servo/ipc-channel"
|
|
|
|
[dependencies.plugins]
|
|
path = "../plugins"
|
|
|
|
[dependencies.webrender_traits]
|
|
git = "https://github.com/servo/webrender_traits"
|
|
|
|
[dependencies]
|
|
bitflags = "0.3"
|
|
cssparser = {version = "0.5.3", features = ["heap_size", "serde-serialization"]}
|
|
euclid = {version = "0.6.2", features = ["plugins"]}
|
|
heapsize = "0.3.0"
|
|
heapsize_plugin = "0.1.2"
|
|
hyper = { version = "0.7", features = [ "serde-serialization" ] }
|
|
rustc-serialize = "0.3.4"
|
|
serde = "0.6"
|
|
serde_macros = "0.6"
|
|
url = {version = "0.5.5", features = ["heap_size"]}
|