Skip to content

Commit

Permalink
Add docs.rs metadata flags in Cargo.toml
Browse files Browse the repository at this point in the history
- Should build all of the documentation with all features
  • Loading branch information
bluk committed Jan 2, 2022
1 parent 8bb4bf9 commit 0bd6f3d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
# CHANGELOG

## Unreleased
## v0.2.1

### Changed

* Move `signer` and `verifier` modules underneath `ring` module.
* Allow `ring` dependency to be optional.
* Update to document all features on doc.rs.

## v0.2.0

### Changed

* Major refactor to basic functions for signing and verifying a JWT.
* Allow different crypto implementations which are enabled via cargo features.

## v0.1.0

Expand Down
8 changes: 6 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "min_jwt"
version = "0.2.0"
version = "0.2.1"
license = "MIT OR Apache-2.0"
description = "Minimal JSON Web Token library"
repository = "https://github.com/bluk/min_jwt"
Expand Down Expand Up @@ -34,4 +34,8 @@ p256 = { version = "0.10.0",default-features = false, features = ["ecdsa", "jwk"
rsa = { version = "0.5.0", default-features = false, features = ["alloc", "pem"] }

[features]
default = []
default = []

[package.metadata.docs.rs]
all-features = true
no-default-features = true

0 comments on commit 0bd6f3d

Please sign in to comment.