mirror of
https://github.com/BitskiCo/jwk-rs
synced 2025-05-04 05:19:43 +00:00
Add badges to readme
This commit is contained in:
parent
06e93ec0b4
commit
7a8536dabe
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@ -3,7 +3,7 @@ on: push
|
|||||||
name: CI
|
name: CI
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
ci:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "jsonwebkey"
|
name = "jsonwebkey"
|
||||||
version = "0.0.3"
|
version = "0.1.0"
|
||||||
authors = ["Nick Hynes <nhynes@nhynes.com>"]
|
authors = ["Nick Hynes <nhynes@nhynes.com>"]
|
||||||
description = "JSON Web Key (JWK) (de)serialization, generation, and conversion."
|
description = "JSON Web Key (JWK) (de)serialization, generation, and conversion."
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
@ -1,5 +1,9 @@
|
|||||||
# jsonwebkey
|
# jsonwebkey
|
||||||
|
|
||||||
|
[](https://crates.io/crates/jsonwebkey)
|
||||||
|
[](https://docs.rs/jsonwebkey)
|
||||||
|
[](https://codecov.io/gh/nhynes/jwk-rs)
|
||||||
|
|
||||||
*[JSON Web Key (JWK)](https://tools.ietf.org/html/rfc7517#section-4.3) (de)serialization, generation, and conversion.*
|
*[JSON Web Key (JWK)](https://tools.ietf.org/html/rfc7517#section-4.3) (de)serialization, generation, and conversion.*
|
||||||
|
|
||||||
Note: requires rustc nightly >= 1.45 for conveniences around fixed-size arrays.
|
Note: requires rustc nightly >= 1.45 for conveniences around fixed-size arrays.
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
#![allow(incomplete_features)]
|
#![allow(incomplete_features)]
|
||||||
#![feature(box_syntax, const_generics, fixed_size_array)]
|
#![feature(box_syntax, const_generics, fixed_size_array)]
|
||||||
|
|
||||||
//! # jsonwebkey
|
|
||||||
//!
|
|
||||||
//! *[JSON Web Key (JWK)](https://tools.ietf.org/html/rfc7517#section-4.3) (de)serialization, generation, and conversion.*
|
//! *[JSON Web Key (JWK)](https://tools.ietf.org/html/rfc7517#section-4.3) (de)serialization, generation, and conversion.*
|
||||||
//!
|
//!
|
||||||
//! **Note**: this crate requires Rust nightly >= 1.45 because it uses
|
//! **Note**: this crate requires Rust nightly >= 1.45 because it uses
|
||||||
|
Loading…
x
Reference in New Issue
Block a user