Skip to main content

gwr_components/
lib.rs

1// Copyright (c) 2023 Graphcore Ltd. All rights reserved.
2
3#![doc(test(attr(deny(unused_must_use))))]
4#![doc = std::include_str!(concat!(env!("OUT_DIR"), "/crate-docs.md"))]
5
6pub mod arbiter;
7pub mod capacity_allocator;
8pub mod cli;
9pub mod connect;
10pub mod delay;
11pub mod flow_controls;
12pub mod queue;
13pub mod router;
14pub mod sink;
15pub mod source;
16pub mod state_machine;
17pub mod store;
18pub mod test_helpers;
19pub mod types;