auto merge of #4612 : Ms2ger/servo/devtools-doc, r=saneyuki

Also removed a duplicated feature gate.
This commit is contained in:
bors-servo 2015-01-11 09:15:45 -07:00
commit 3897547bc2

View file

@ -2,6 +2,11 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
//! An actor-based remote devtools server implementation. Only tested with
//! nightly Firefox versions at time of writing. Largely based on
//! reverse-engineering of Firefox chrome devtool logs and reading of
//! [code](http://mxr.mozilla.org/mozilla-central/source/toolkit/devtools/server/).
#![crate_name = "devtools"] #![crate_name = "devtools"]
#![crate_type = "rlib"] #![crate_type = "rlib"]
@ -10,14 +15,9 @@
#![feature(phase)] #![feature(phase)]
#![feature(phase)]
#[phase(plugin, link)] #[phase(plugin, link)]
extern crate log; extern crate log;
/// An actor-based remote devtools server implementation. Only tested with nightly Firefox
/// versions at time of writing. Largely based on reverse-engineering of Firefox chrome
/// devtool logs and reading of [code](http://mxr.mozilla.org/mozilla-central/source/toolkit/devtools/server/).
extern crate collections; extern crate collections;
extern crate core; extern crate core;
extern crate devtools_traits; extern crate devtools_traits;