Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,11 @@ crates/
│ │ ├── cmd/ # CLI commands (dispatch, check, generate, list, debug)
│ │ ├── environment.rs # Environment configuration and resolution
│ │ ├── resolved.rs # Resolution logic, VersionProblem / NonVersionProblem / Fix enums
│ │ ├── compatibility.rs # Wire compatibility checking via drift
│ │ ├── compatibility/ # Wire compatibility checking via drift
│ │ │ ├── mod.rs # Module re-exports
│ │ │ ├── types.rs # ApiCompatIssue and related data model
│ │ │ ├── detect.rs # Bridge from drift output into the data model
│ │ │ └── display.rs # Styled CLI rendering of compatibility issues
│ │ ├── validation.rs # OpenAPI document validation
│ │ ├── vcs/ # VCS abstraction (RepoVcs: Git/Jujutsu dispatch)
│ │ │ ├── mod.rs # Module re-exports
Expand Down
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions crates/dropshot-api-manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ thiserror.workspace = true

[dev-dependencies]
assert_matches.workspace = true
expectorate.workspace = true

[lints]
workspace = true
Expand Down
Loading
Loading