Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
chrislearn committed Nov 27, 2023
1 parent a5ceada commit b3fe068
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion crates/compression/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ impl Display for CompressionAlgo {
CompressionAlgo::Gzip => write!(f, "gzip"),
#[cfg(feature = "zstd")]
CompressionAlgo::Zstd => write!(f, "zstd"),
_ => write!(f, "unreached"),
_ => unreachable!(),
}
}
}
Expand Down
2 changes: 2 additions & 0 deletions crates/oapi/src/openapi/schema/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
//! used to define field properties, enum values, array or object types.
//!
//! [schema]: https://spec.openapis.org/oas/latest.html#schema-object
use std::collections::BTreeMap;

use serde::{Deserialize, Serialize};

use crate::RefOr;
Expand Down

0 comments on commit b3fe068

Please sign in to comment.