From 0b0b5ce8e24e99970932a43f9fa5239f629b6430 Mon Sep 17 00:00:00 2001 From: Kert Date: Tue, 6 Apr 2021 22:26:41 -0700 Subject: [PATCH 1/2] Update pre-commit.yaml --- .github/workflows/pre-commit.yaml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.github/workflows/pre-commit.yaml b/.github/workflows/pre-commit.yaml index 2a20ae1..8b16c07 100644 --- a/.github/workflows/pre-commit.yaml +++ b/.github/workflows/pre-commit.yaml @@ -1,17 +1,3 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - name: pre-commit on: From 6acce8df8016c12e7fa815f09a99c10090cef1de Mon Sep 17 00:00:00 2001 From: Kert Date: Tue, 6 Apr 2021 22:35:40 -0700 Subject: [PATCH 2/2] Add badges --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 5655681..0430ed4 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ # Fixed BigInt +[![crate](https://img.shields.io/crates/v/fixed-bigint.svg)](https://crates.io/crates/fixed-bigint) +[![minimum rustc 1.51](https://img.shields.io/badge/rustc-1.51+-red.svg)](https://rust-lang.github.io/rfcs/2495-min-rust-version.html) +[![build status](https://github.com/kaidokert/fixed-bigint-rs/actions/workflows/rust.yml/badge.svg)](https://github.com/kaidokert/fixed-bigint-rs/actions) + Unsigned BigInt implementation, backed by a fixed-size array. ***Important***: Requires at least Rust 1.51 stable, as it uses `min_const_generics`