pub const MAX_DEPTH: usize = 64;Expand description
How deep a schema is allowed to nest.
The number is not interesting and the bound is. Everything downstream of this crate walks a schema recursively, so a schema nested a hundred thousand deep is a stack overflow rather than an error, and a stack overflow is not something a host can catch and turn into a failed query. Sixty four is far past any schema anybody writes on purpose and far short of anything that threatens a stack.