Skip to content

Commit aea5eeb

Browse files
author
bors-servo
authored
Auto merge of #365 - nical:0.20.0, r=kvark
Version 0.20.0 The majority of the planned breaking changes are in. Version 0.21 will probably follow soon with the matrix convention changes, but It'd be nice to update WebRender before that to avoid the complication of updating webrender for both the matrix changes and all of the API breaks that landed recently. Also removed the rand dependency as it looks like it isn't used anywhere. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/euclid/365) <!-- Reviewable:end -->
2 parents 8c7d3f4 + fc316bd commit aea5eeb

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "euclid"
3-
version = "0.19.10"
3+
version = "0.20.0"
44
authors = ["The Servo Project Developers"]
55
description = "Geometry primitives"
66
documentation = "https://docs.rs/euclid/"
@@ -18,5 +18,4 @@ serde = { version = "1.0", features = ["serde_derive"], optional = true }
1818
mint = {version = "0.5.1", optional = true}
1919

2020
[dev-dependencies]
21-
rand = "0.4"
2221
serde_test = "1.0"

src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,6 @@ extern crate serde;
4747
pub extern crate mint;
4848
extern crate num_traits;
4949
#[cfg(test)]
50-
extern crate rand;
51-
#[cfg(test)]
5250
use std as core;
5351

5452
pub use box2d::Box2D;

0 commit comments

Comments
 (0)