dd4b1c60a4
Changes the `edition` to 2021 in both the `yubikey` and `yubikey-cli` crates. Removes `TryFrom`/`TryInto` imports, now that they're in the prelude.
27 lines
705 B
TOML
27 lines
705 B
TOML
[package]
|
|
name = "yubikey-cli"
|
|
version = "0.6.0-pre"
|
|
description = """
|
|
Command-line interface for performing encryption and signing using RSA/ECC keys
|
|
stored on YubiKey devices.
|
|
"""
|
|
authors = ["Tony Arcieri <tony@iqlusion.io>"]
|
|
license = "BSD-2-Clause"
|
|
repository = "https://github.com/iqlusioninc/yubikey.rs"
|
|
readme = "README.md"
|
|
categories = ["command-line-utilities", "cryptography", "hardware-support"]
|
|
keywords = ["ecdsa", "rsa", "piv", "pcsc", "yubikey"]
|
|
edition = "2021"
|
|
rust-version = "1.56"
|
|
|
|
[dependencies]
|
|
gumdrop = "0.8"
|
|
env_logger = "0.9"
|
|
lazy_static = "1"
|
|
log = "0.4"
|
|
sha2 = "0.9"
|
|
subtle-encoding = "0.5"
|
|
termcolor = "1"
|
|
x509-parser = "0.12"
|
|
yubikey = { version = "=0.6.0-pre", path = ".." }
|