servo/components/profile_traits/Cargo.toml
Anthony Ramine 1854566683 Update to Rust 1.14.0-nightly (19ac57926 2016-10-08)
A cargo bump and a switch to serde_derive is needed to do this rustup.
2016-10-09 18:53:47 +02:00

25 lines
590 B
TOML

[package]
name = "profile_traits"
version = "0.0.1"
authors = ["The Servo Project Developers"]
license = "MPL-2.0"
publish = false
[lib]
name = "profile_traits"
path = "lib.rs"
[features]
energy-profiling = ["energymon", "energy-monitor"]
[dependencies]
ipc-channel = "0.5"
energymon = {git = "https://github.com/energymon/energymon-rust.git", optional = true}
energy-monitor = {version = "0.2.0", optional = true}
plugins = {path = "../plugins"}
serde = "0.8"
serde_derive = "0.8"
signpost = {git = "https://github.com/pcwalton/signpost.git"}
time = "0.1.12"
util = {path = "../util"}