drift 0.2.0

Library for comparing the compatibility of OpenAPI documents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2026 Oxide Computer Company

//! Drift
//!
//! Detect changes between OpenAPI documents.

mod change;
mod compare;
mod context;
mod operations;
mod path;
mod resolve;
mod schema;
mod setops;

pub use change::*;
pub use compare::compare;
pub use path::JsonPathStack;