mod util; extern crate apistos_schemars as schemars; use std::hash::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") }