소스 검색

Remove redundant `use serde`; it is an external crate.

Richard Janis Goldschmidt 8 년 전
부모
커밋
7339d6cb9a
1개의 변경된 파일0개의 추가작업 그리고 3개의 파일을 삭제
  1. 0 3
      rational/src/lib.rs

+ 0 - 3
rational/src/lib.rs

@@ -28,9 +28,6 @@ use std::hash;
 use std::ops::{Add, Div, Mul, Neg, Rem, Sub};
 use std::str::FromStr;
 
-#[cfg(feature = "serde")]
-use serde;
-
 #[cfg(feature = "num-bigint")]
 use bigint::{BigInt, BigUint, Sign};