db13fce53b
Bumps [clap](https://github.com/clap-rs/clap) from 3.2.23 to 4.0.23. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v3.2.23...v4.0.23) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
27 lines
727 B
TOML
27 lines
727 B
TOML
[package]
|
|
name = "yubikey-cli"
|
|
version = "0.6.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.9"
|
|
lazy_static = "1"
|
|
log = "0.4"
|
|
sha2 = "0.10"
|
|
subtle-encoding = "0.5"
|
|
termcolor = "1"
|
|
x509-parser = "0.12"
|
|
yubikey = { version = "0.6", path = ".." }
|