#![allow(deprecated)] mod util; extern crate apistos_schemars as schemars; use schemars::JsonSchema; use util::*; #[allow(dead_code)] #[derive(JsonSchema)] #[deprecated] struct DeprecatedStruct { foo: i32, #[deprecated] deprecated_field: bool, } #[test] fn deprecated_struct() -> TestResult { test_default_generated_schema::("deprecated-struct") } #[allow(dead_code)] #[derive(JsonSchema)] #[deprecated] enum DeprecatedEnum { Unit, #[deprecated] DeprecatedUnitVariant, #[deprecated] DeprecatedStructVariant { foo: i32, #[deprecated] deprecated_field: bool, }, } #[test] fn deprecated_enum() -> TestResult { test_default_generated_schema::("deprecated-enum") }