This commit is contained in:
Tony Arcieri
2019-11-18 19:10:04 -08:00
parent 9195d5efd0
commit cccdd8dfa9
6 changed files with 17 additions and 1 deletions
+3
View File
@@ -51,8 +51,11 @@ jobs:
- name: Run cargo test
uses: actions-rs/cargo@v1
env:
RUSTFLAGS: -D warnings
with:
command: test
args: --release
fmt:
name: Rustfmt
+8
View File
@@ -0,0 +1,8 @@
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## 0.0.1 (2019-11-18)
- It typechecks, ship it!
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "yubikey-piv"
version = "0.0.0" # Also update html_root_url in lib.rs when bumping this
version = "0.0.1" # Also update html_root_url in lib.rs when bumping this
description = """
Pure Rust host-side driver for the YubiKey Personal Identity Verification (PIV)
CCID application providing general-purpose public-key signing and encryption
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

+1
View File
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 12 KiB

+4
View File
@@ -72,6 +72,10 @@
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#![doc(
html_logo_url = "https://raw.githubusercontent.com/tarcieri/yubikey-piv.rs/develop/img/logo.png",
html_root_url = "https://docs.rs/yubikey-piv/0.0.1"
)]
#![warn(
missing_docs,
rust_2018_idioms,