hive-router 0.2.0

GraphQL router for Federation, part of the Hive platform
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// TODO: enable this cross-lib to avoid panics
// #![deny(clippy::unwrap_used, clippy::expect_used, clippy::panic)]

pub mod ast;
pub mod consumer_schema;
pub mod federation_spec;
pub mod graph;
pub mod utils;

pub mod planner;
pub mod state;

#[cfg(test)]
mod tests;