0c7441a81e
Bumps the following dependencies to the latest versions: - `elliptic-curve` v0.13 - `k256` v0.13 - `p256` v0.13 - `p384` v0.13 - `pbkdf2` v0.12 - `rsa` v0.9.0-pre.0 - `signature` v2
27 lines
772 B
TOML
27 lines
772 B
TOML
[package]
|
|
name = "yubikey-cli"
|
|
version = "0.7.0"
|
|
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]
|
|
clap = { version = "4", features = ["derive"] }
|
|
env_logger = "0.10"
|
|
hex = { package = "base16ct", version = "0.2", features = ["alloc"] }
|
|
log = "0.4"
|
|
once_cell = "1"
|
|
sha2 = "0.10"
|
|
termcolor = "1"
|
|
x509-parser = "0.14"
|
|
yubikey = { version = "0.7", path = ".." }
|