File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ schema, as well as an optional integration into the [Iron framework][2]. It
14
14
tries to keep the number of dynamic operations to a minimum, and give you as the
15
15
schema developer the control of the query execution path.
16
16
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
18
18
easy to drop into any project. Through the `iron-handlers` feature, it also
19
19
depends on Iron.
20
20
@@ -185,13 +185,11 @@ built-in [GraphiQL][6] handler included.
185
185
186
186
#![ cfg_attr( feature="nightly" , feature( test) ) ]
187
187
#![ warn( missing_docs) ]
188
-
189
- #[ cfg( feature="rustc-serialize" ) ] extern crate rustc_serialize;
190
- #[ cfg( feature="serde" ) ] extern crate serde;
191
-
192
188
#[ cfg( feature="nightly" ) ] extern crate test;
193
189
#[ cfg( feature="iron-handlers" ) ] #[ macro_use( itry, iexpect) ] extern crate iron;
194
190
#[ cfg( test) ] extern crate iron_test;
191
+ extern crate serde;
192
+ extern crate serde_json;
195
193
196
194
#[ macro_use] mod macros;
197
195
mod ast;
You can’t perform that action at this time.
0 commit comments