Skip to content

Commit

Permalink
Set MSRV to 1.63.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chifflier committed Feb 23, 2024
1 parent 1953a63 commit 957945e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
matrix:
rust:
- stable
- 1.53.0
- 1.63.0
- nightly
steps:
- uses: actions/checkout@v2
Expand Down
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oid-registry"
version = "0.6.1"
version = "0.7.0"
authors = ["Pierre Chifflier <chifflier@wzdftpd.net>"]
license = "MIT OR Apache-2.0"
description = "Object Identifier (OID) database"
Expand All @@ -10,6 +10,7 @@ repository = "https://github.com/rusticata/oid-registry.git"
edition = "2018"
build = "build.rs"
readme = "README.md"
rust-version = "1.63"

include = [
"LICENSE-*",
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![docs.rs](https://docs.rs/oid-registry/badge.svg)](https://docs.rs/oid-registry)
[![crates.io](https://img.shields.io/crates/v/oid-registry.svg)](https://crates.io/crates/oid-registry)
[![Github CI](https://github.com/rusticata/oid-registry/workflows/Continuous%20integration/badge.svg)](https://github.com/rusticata/oid-registry/actions)
[![Minimum rustc version](https://img.shields.io/badge/rustc-1.53.0+-lightgray.svg)](#rust-version-requirements)
[![Minimum rustc version](https://img.shields.io/badge/rustc-1.63.0+-lightgray.svg)](#rust-version-requirements)
# OID Registry

This crate is a helper crate, containing a database of OID objects. These objects are intended
Expand Down Expand Up @@ -61,6 +61,7 @@ registry.insert(oid!(1.2.3.5), ("shortName", "A description"));
Versions of `oid-registry` must be chosen specifically, to depend on a precise version of `asn1-rs`.
The following table summarizes the matching versions:

- `oid-registry` 0.7.x depends on `asn1-rs` 0.6.0
- `oid-registry` 0.6.x depends on `asn1-rs` 0.5.0
- `oid-registry` 0.5.x depends on `asn1-rs` 0.4.0

Expand Down
11 changes: 10 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//! [![docs.rs](https://docs.rs/oid-registry/badge.svg)](https://docs.rs/oid-registry)
//! [![crates.io](https://img.shields.io/crates/v/oid-registry.svg)](https://crates.io/crates/oid-registry)
//! [![Github CI](https://github.com/rusticata/oid-registry/workflows/Continuous%20integration/badge.svg)](https://github.com/rusticata/oid-registry/actions)
//! [![Minimum rustc version](https://img.shields.io/badge/rustc-1.53.0+-lightgray.svg)](#rust-version-requirements)
//! [![Minimum rustc version](https://img.shields.io/badge/rustc-1.63.0+-lightgray.svg)](#rust-version-requirements)
//! # OID Registry
//!
//! This crate is a helper crate, containing a database of OID objects. These objects are intended
Expand Down Expand Up @@ -58,6 +58,15 @@
//!
//! ```
//!
//! ## Versions and compatibility with `asn1-rs`
//!
//! Versions of `oid-registry` must be chosen specifically, to depend on a precise version of `asn1-rs`.
//! The following table summarizes the matching versions:
//!
//! - `oid-registry` 0.7.x depends on `asn1-rs` 0.6.0
//! - `oid-registry` 0.6.x depends on `asn1-rs` 0.5.0
//! - `oid-registry` 0.5.x depends on `asn1-rs` 0.4.0
//!
//! ## Contributing OIDs
//!
//! All OID values, constants, and features are derived from files in the `assets` directory in the
Expand Down

0 comments on commit 957945e

Please sign in to comment.