Removed rustc-serialization as dependency and updated the docs that referenced rustc.
This commit is contained in:
parent
41112d0b6d
commit
9adc0c4479
1 changed files with 3 additions and 5 deletions
|
@ -14,7 +14,7 @@ schema, as well as an optional integration into the [Iron framework][2]. It
|
||||||
tries to keep the number of dynamic operations to a minimum, and give you as the
|
tries to keep the number of dynamic operations to a minimum, and give you as the
|
||||||
schema developer the control of the query execution path.
|
schema developer the control of the query execution path.
|
||||||
|
|
||||||
Juniper only depends on `rustc-serialize` by default, making it lightweight and
|
Juniper only depends on `serde` and `serde_json` by default, making it lightweight and
|
||||||
easy to drop into any project. Through the `iron-handlers` feature, it also
|
easy to drop into any project. Through the `iron-handlers` feature, it also
|
||||||
depends on Iron.
|
depends on Iron.
|
||||||
|
|
||||||
|
@ -185,13 +185,11 @@ built-in [GraphiQL][6] handler included.
|
||||||
|
|
||||||
#![cfg_attr(feature="nightly", feature(test))]
|
#![cfg_attr(feature="nightly", feature(test))]
|
||||||
#![warn(missing_docs)]
|
#![warn(missing_docs)]
|
||||||
|
|
||||||
#[cfg(feature="rustc-serialize")] extern crate rustc_serialize;
|
|
||||||
#[cfg(feature="serde")] extern crate serde;
|
|
||||||
|
|
||||||
#[cfg(feature="nightly")] extern crate test;
|
#[cfg(feature="nightly")] extern crate test;
|
||||||
#[cfg(feature="iron-handlers")] #[macro_use(itry, iexpect)] extern crate iron;
|
#[cfg(feature="iron-handlers")] #[macro_use(itry, iexpect)] extern crate iron;
|
||||||
#[cfg(test)] extern crate iron_test;
|
#[cfg(test)] extern crate iron_test;
|
||||||
|
extern crate serde;
|
||||||
|
extern crate serde_json;
|
||||||
|
|
||||||
#[macro_use] mod macros;
|
#[macro_use] mod macros;
|
||||||
mod ast;
|
mod ast;
|
||||||
|
|
Loading…
Add table
Reference in a new issue