-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
99 lines (76 loc) · 2.09 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# Cargo.toml
# Copyright (C) 2017-2024 The Nitrocli Developers
# SPDX-License-Identifier: GPL-3.0-or-later
[package]
name = "nitrocli"
version = "0.4.1"
edition = "2021"
rust-version = "1.56"
authors = ["Daniel Mueller <[email protected]>"]
license = "GPL-3.0-or-later"
homepage = "https://github.com/d-e-s-o/nitrocli"
repository = "https://github.com/d-e-s-o/nitrocli.git"
readme = "README.md"
categories = ["command-line-utilities", "authentication", "cryptography", "hardware-support"]
keywords = ["nitrokey", "nitrokey-storage", "nitrokey-pro", "cli", "usb"]
description = """
A command line tool for interacting with Nitrokey devices.
"""
exclude = ["rustfmt.toml"]
default-run = "nitrocli"
[[bin]]
name = "shell-complete"
path = "var/shell-complete.rs"
[[bin]]
name = "nitrocli-otp-cache"
path = "ext/otp_cache.rs"
[build-dependencies]
anyhow = "1.0"
grev = "0.1.3"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
incremental = false
[dependencies.anyhow]
version = "1.0"
[dependencies.base32]
version = "0.5.1"
[dependencies.directories]
version = "5"
[dependencies.envy]
version = "0.4.2"
[dependencies.libc]
version = "0.2"
[dependencies.merge]
version = "0.1"
[dependencies.nitrokey]
version = "0.9.0"
[dependencies.progressing]
version = "3.0.2"
[dependencies.serde]
version = "1.0.156"
features = ["derive"]
[dependencies.structopt]
version = "0.3.21"
default-features = false
[dependencies.termion]
version = "1.5.5"
[dependencies.toml]
version = "0.5.6"
[dev-dependencies.nitrokey-test]
version = "0.5"
[dev-dependencies.nitrokey-test-state]
version = "0.1"
[dev-dependencies.regex]
version = "1"
[dev-dependencies.tempfile]
version = "3.1"
[dev-dependencies]
# A set of unused dependencies that we require to force correct minimum versions
# of transitive dependencies, for cases where our dependencies have incorrect
# dependency specifications themselves.
# error: cannot find macro `log` in this scope
_log_unused = { package = "log", version = "0.4.4" }
# error[E0635]: unknown feature `proc_macro_span_shrink`
_proc_macro2_unused = { package = "proc-macro2", version = "1.0.60" }