//! Regression coverage for the JSON recursion guard on untrusted documents.
//!
//! App-data documents fetched from an untrusted IPFS gateway are parsed as
//! free-form JSON values. `serde_json` enforces a default recursion limit, so a
//! deeply nested document is rejected with a typed error rather than
//! overflowing the stack. This pins that behavior as the depth bound the SDK
//! relies on instead of a bespoke nesting cap.
use Value;