mod util; use std::collections::hash_map::RandomState; use indexmap2::{IndexMap, IndexSet}; use schemars::JsonSchema; use util::*; #[allow(dead_code)] #[derive(JsonSchema)] struct IndexMapTypes { map: IndexMap, set: IndexSet, } #[test] fn indexmap_types() -> TestResult { test_default_generated_schema::("indexmap") }