diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2018-11-01 14:09:54 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2018-11-10 17:47:28 +0100 |
commit | a15d33a10e8a0aa1c02fa44ede50a63b95606b8f (patch) | |
tree | 5b0ef37530e77e646c2b6bc7df3d95e756607e77 /components/style/values/generics/easing.rs | |
parent | e1fcffb336d763d851f14fae5cda464209552bb2 (diff) | |
download | servo-a15d33a10e8a0aa1c02fa44ede50a63b95606b8f.tar.gz servo-a15d33a10e8a0aa1c02fa44ede50a63b95606b8f.zip |
`cargo fix --edition`
Diffstat (limited to 'components/style/values/generics/easing.rs')
-rw-r--r-- | components/style/values/generics/easing.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/style/values/generics/easing.rs b/components/style/values/generics/easing.rs index 616fd63d172..96c4ad8ebd3 100644 --- a/components/style/values/generics/easing.rs +++ b/components/style/values/generics/easing.rs @@ -5,8 +5,8 @@ //! Generic types for CSS Easing Functions. //! https://drafts.csswg.org/css-easing/#timing-functions -use parser::ParserContext; -use values::CSSFloat; +use crate::parser::ParserContext; +use crate::values::CSSFloat; /// A generic easing function. #[derive( |