Skip to content

Commit

Permalink
Add public archive note.
Browse files Browse the repository at this point in the history
Remove the CI.
  • Loading branch information
raldone01 committed Dec 12, 2024
1 parent 4c6a3c5 commit dee0410
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 143 deletions.
12 changes: 0 additions & 12 deletions .github/workflows/rust_daily_nightly_check.yml

This file was deleted.

19 changes: 0 additions & 19 deletions .github/workflows/rust_main.yml

This file was deleted.

37 changes: 0 additions & 37 deletions .github/workflows/rust_release.yml

This file was deleted.

56 changes: 0 additions & 56 deletions .github/workflows/rust_validation.yml

This file was deleted.

6 changes: 0 additions & 6 deletions .vscode/extensions.json

This file was deleted.

10 changes: 5 additions & 5 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"cSpell.diagnosticLevel": "Information",
"cSpell.words": [
"clippy"
]
}
"rust-analyzer.cargo.extraArgs": [
"-Z",
"unstable-options"
]
}
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.1] - 2024-12-12
- Add a public archive note and state the last supported rust version `1.71.0-nightly (nightly-2023-04-18)`.
- Removed the CI.

## [0.3.0] - 2022-11-22
- Reworked the crate to use only a single Struct `ConstClosure`.
- Allow borrowing tuples of up to 12 references (Currently only of the same mutability).
Expand Down Expand Up @@ -47,7 +51,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

Initial release.

[Unreleased]: https://github.com/ink-feather-org/const_closure/compare/v0.3.0...HEAD
[Unreleased]: https://github.com/ink-feather-org/const_closure/compare/v0.3.1...HEAD
[0.3.1]: https://github.com/ink-feather-org/const_closure/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/ink-feather-org/const_closure/compare/v0.2.3...v0.3.0
[0.2.3]: https://github.com/ink-feather-org/const_closure/compare/v0.2.2...v0.2.3
[0.2.2]: https://github.com/ink-feather-org/const_closure/compare/v0.2.1...v0.2.2
Expand Down
5 changes: 1 addition & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "const_closure"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = [
Expand All @@ -12,6 +12,3 @@ homepage = "https://github.com/ink-feather-org/const_closure"
repository = "https://github.com/ink-feather-org/const_closure"
categories = ["no-std"]
keywords = ["const", "closures", "nightly"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
# Const Closure

[![Daily-Nightly](https://github.com/ink-feather-org/const_closure/actions/workflows/rust_daily_nightly_check.yml/badge.svg)](https://github.com/ink-feather-org/const_closure/actions/workflows/rust_daily_nightly_check.yml)
[![Rust-Main-CI](https://github.com/ink-feather-org/const_closure/actions/workflows/rust_main.yml/badge.svg)](https://github.com/ink-feather-org/const_closure/actions/workflows/rust_main.yml)
[![docs.rs](https://docs.rs/const_closure/badge.svg)](https://docs.rs/const_closure)
[![crates.io](https://img.shields.io/crates/v/const_closure.svg)](https://crates.io/crates/const_closure)
[![rustc](https://img.shields.io/badge/rustc-nightly-lightgrey)](https://doc.rust-lang.org/nightly/std/)

<!-- The rest of this section comes straight from the crate docs from the source. -->

# THIS CRATE IS BROKEN - Archive Note

The last tested working rust version is `1.71.0-nightly (nightly-2023-04-18)`.
Most const traits have been removed from the standard library.
Once they are back this crate might make a return if it is still needed.

## Description

This crate allows you to create types which represent closures in const contexts.

To do this simply create an instance of the provided closure helper: `ConstClosure`
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[toolchain]
channel = "nightly"
channel = "nightly-2023-04-18"
components = [
"rustc",
"cargo",
Expand Down

0 comments on commit dee0410

Please sign in to comment.