Blame servo/components/msg/lib.rs

Packit f0b94e
/* This Source Code Form is subject to the terms of the Mozilla Public
Packit f0b94e
 * License, v. 2.0. If a copy of the MPL was not distributed with this
Packit f0b94e
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
Packit f0b94e
Packit f0b94e
#![deny(unsafe_code)]
Packit f0b94e
Packit f0b94e
#[macro_use]
Packit f0b94e
extern crate bitflags;
Packit f0b94e
#[macro_use] extern crate malloc_size_of;
Packit f0b94e
#[macro_use] extern crate malloc_size_of_derive;
Packit f0b94e
extern crate nonzero;
Packit f0b94e
#[macro_use] extern crate serde;
Packit f0b94e
extern crate webrender_api;
Packit f0b94e
Packit f0b94e
pub mod constellation_msg;