mirror of
https://github.com/servo/servo.git
synced 2025-06-09 09:03:23 +00:00
The new version of rust allows us to elide some lifetimes and clippy is now complaining about this. This change elides them where possible and removes the clippy exceptions. Fixes #34804. Signed-off-by: Martin Robinson <mrobinson@igalia.com>
17 lines
426 B
Rust
17 lines
426 B
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
#![deny(unsafe_code)]
|
|
|
|
mod raqote_backend;
|
|
|
|
pub use webgl_mode::WebGLComm;
|
|
|
|
pub mod canvas_data;
|
|
pub mod canvas_paint_thread;
|
|
mod webgl_limits;
|
|
mod webgl_mode;
|
|
pub mod webgl_thread;
|
|
#[cfg(feature = "webxr")]
|
|
mod webxr;
|