mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
37 lines
856 B
TOML
37 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.4", features = ["heap_size", "serde-serialization"]}
|
|
euclid = {version = "0.6.4", features = ["plugins"]}
|
|
heapsize = "0.3.0"
|
|
heapsize_plugin = "0.1.2"
|
|
hyper = { version = "0.8", features = [ "serde-serialization" ] }
|
|
rustc-serialize = "0.3.4"
|
|
serde = "0.7"
|
|
serde_macros = "0.7"
|
|
url = {version = "0.5.7", features = ["heap_size"]}
|