mirror of
https://github.com/servo/servo.git
synced 2025-08-11 08:25:32 +01:00
Auto merge of #10750 - servo:num, r=nox
Use num's constituent crates. <!-- Reviewable:start --> This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/10750) <!-- Reviewable:end -->
This commit is contained in:
commit
89b276c889
27 changed files with 471 additions and 248 deletions
|
@ -91,7 +91,7 @@ euclid = {version = "0.6.4", features = ["plugins"]}
|
|||
gleam = "0.2.8"
|
||||
image = "0.9"
|
||||
log = "0.3.5"
|
||||
num = "0.1.24"
|
||||
num-traits = "0.1.32"
|
||||
offscreen_gl_context = "0.1.2"
|
||||
rand = "0.3"
|
||||
serde = "0.7"
|
||||
|
|
|
@ -37,7 +37,7 @@ extern crate layout_traits;
|
|||
extern crate log;
|
||||
extern crate msg;
|
||||
extern crate net_traits;
|
||||
extern crate num;
|
||||
extern crate num_traits;
|
||||
extern crate offscreen_gl_context;
|
||||
#[macro_use]
|
||||
extern crate profile_traits;
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
use euclid::length::Length;
|
||||
use ipc_channel::ipc::{self, IpcSender};
|
||||
use ipc_channel::router::ROUTER;
|
||||
use num::traits::Saturating;
|
||||
use num_traits::Saturating;
|
||||
use script_traits::{MsDuration, NsDuration, precise_time_ms, precise_time_ns};
|
||||
use script_traits::{TimerEvent, TimerEventRequest};
|
||||
use std::cell::RefCell;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue