Skip to content

Commit

Permalink
Temporary workaround for typename size limits
Browse files Browse the repository at this point in the history
Signed-off-by: Michael X. Grey <[email protected]>
  • Loading branch information
mxgrey committed Jul 9, 2024
1 parent b97c367 commit b91c230
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions mapf/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@
result_flattening
)]

// TODO(@mxgrey): Eliminate the need for this by reducing the complexity of
// struct names, e.g. the typename for the complex chain that implements Lifted
// in activity.rs. This will probably go hand-in-hand with removing the need for
// nightly features, and improve compile times all at once.
#![type_length_limit="157633981"]

pub mod domain;

pub mod planner;
Expand Down

0 comments on commit b91c230

Please sign in to comment.