Skip to content

Commit 9adc0c4

Browse files
Removed rustc-serialization as dependency and updated the docs that referenced rustc.
1 parent 41112d0 commit 9adc0c4

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/lib.rs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ schema, as well as an optional integration into the [Iron framework][2]. It
1414
tries to keep the number of dynamic operations to a minimum, and give you as the
1515
schema developer the control of the query execution path.
1616
17-
Juniper only depends on `rustc-serialize` by default, making it lightweight and
17+
Juniper only depends on `serde` and `serde_json` by default, making it lightweight and
1818
easy to drop into any project. Through the `iron-handlers` feature, it also
1919
depends on Iron.
2020
@@ -185,13 +185,11 @@ built-in [GraphiQL][6] handler included.
185185

186186
#![cfg_attr(feature="nightly", feature(test))]
187187
#![warn(missing_docs)]
188-
189-
#[cfg(feature="rustc-serialize")] extern crate rustc_serialize;
190-
#[cfg(feature="serde")] extern crate serde;
191-
192188
#[cfg(feature="nightly")] extern crate test;
193189
#[cfg(feature="iron-handlers")] #[macro_use(itry, iexpect)] extern crate iron;
194190
#[cfg(test)] extern crate iron_test;
191+
extern crate serde;
192+
extern crate serde_json;
195193

196194
#[macro_use] mod macros;
197195
mod ast;

0 commit comments

Comments
 (0)