dropshot-api-manager 0.7.2

Manage OpenAPI documents generated by Dropshot
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2026 Oxide Computer Company

//! Determine if one OpenAPI document is a subset of another.

mod detect;
mod display;
mod types;
mod wrap;

pub(crate) use detect::{
    CompatDedupMap, FinalizedCompatDedupMap, api_compatible,
};
pub(crate) use types::{
    ApiCompatIssue, CompatIssueLocation, CompatRenderStatus,
};