Skip to content

Commit

Permalink
v0.2.0-rc.4 (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri authored Jan 31, 2024
1 parent 1d07993 commit 15601ac
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/hybrid-array.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ permissions:

env:
CARGO_INCREMENTAL: 0
RUSTFLAGS: "-Dwarnings"
RUSTFLAGS: "-D warnings"
RUSTDOCFLAGS: "-D warnings"

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hybrid-array"
version = "0.2.0-rc.3"
version = "0.2.0-rc.4"
description = """
Hybrid typenum-based and const generic array types designed to provide the
flexibility of typenum-based expressions while also allowing interoperability
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg"
)]
#![warn(
clippy::arithmetic_side_effects,
clippy::cast_lossless,
clippy::cast_possible_truncation,
clippy::cast_possible_wrap,
Expand All @@ -16,7 +17,6 @@
clippy::missing_errors_doc,
clippy::mod_module_files,
clippy::implicit_saturating_sub,
clippy::arithmetic_side_effects,
clippy::panic,
clippy::panic_in_result_fn,
clippy::unwrap_used,
Expand Down Expand Up @@ -131,7 +131,7 @@ pub type ArrayN<T, const N: usize> = Array<T, <[T; N] as AssociatedArraySize>::S
///
/// ## [`AsRef`] impls
///
/// The [`AsRef`] trait can be used to convert from [`&Array<T, U>`] to `&[T; N]` and vice versa:
/// The [`AsRef`] trait can be used to convert from `&Array<T, U>` to `&[T; N]` and vice versa:
///
/// ```
/// use hybrid_array::{Array, ArraySize, AssociatedArraySize, ArrayN, consts::U3};
Expand Down

0 comments on commit 15601ac

Please sign in to comment.