Skip to content

Commit 5014206

Browse files
author
Victor
authored
Merge pull request #34 from NULLx76/min_const_generics
Move to min_const_generics
2 parents 64f3f48 + e837bb9 commit 5014206

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
override: true
6464

6565
- name: rust-tarpaulin
66-
uses: actions-rs/tarpaulin@v0.1.0
66+
uses: actions-rs/tarpaulin@v0.1.3
6767
with:
6868
args: --all-features --out Xml
6969

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ lto = true
1515

1616
[dependencies]
1717
generic-array = {version = "0.14.4", optional=true}
18-
array-init = {git = "https://github.com/manishearth/array-init", version = "0.1.1", optional=true}
18+
array-init = { version = "1.0.0", optional=true}
1919

2020
[dev-dependencies]
2121
criterion = "0.1.2"

src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#![no_std]
2-
#![cfg_attr(feature = "const_generics", feature(const_generics))]
3-
#![cfg_attr(feature = "const_generics", allow(incomplete_features))]
2+
#![cfg_attr(feature = "const_generics", feature(min_const_generics))]
43
#![deny(missing_docs)]
54
#![deny(warnings)]
65
#![deny(unused_import_braces)]

0 commit comments

Comments
 (0)