diff options
author | Daniel Mueller <deso@posteo.net> | 2020-10-06 22:38:10 -0700 |
---|---|---|
committer | Daniel Mueller <deso@posteo.net> | 2020-10-11 17:07:08 -0700 |
commit | ed59adcc9280d937f0f6f3627104597681ce7347 (patch) | |
tree | 66c686434e4b946d0e546d21aa8adc8ea15b7409 /ext/otp-cache/Cargo.toml | |
parent | f65b150049ec9dc5ff2500d7e54c464d530f2e66 (diff) | |
download | nitrocli-ed59adcc9280d937f0f6f3627104597681ce7347.tar.gz nitrocli-ed59adcc9280d937f0f6f3627104597681ce7347.tar.bz2 |
Add otp-cache extension
Diffstat (limited to 'ext/otp-cache/Cargo.toml')
-rw-r--r-- | ext/otp-cache/Cargo.toml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ext/otp-cache/Cargo.toml b/ext/otp-cache/Cargo.toml new file mode 100644 index 0000000..85f9ced --- /dev/null +++ b/ext/otp-cache/Cargo.toml @@ -0,0 +1,16 @@ +# Copyright (C) 2020 The Nitrocli Developers +# SPDX-License-Identifier: GPL-3.0-or-later + +[package] +name = "nitrocli-otp-cache" +version = "0.1.0" +authors = ["Robin Krahl <robin.krahl@ireas.org>"] +edition = "2018" + +[dependencies] +anyhow = "1" +directories = "3" +nitrokey = "0.7.1" +serde = { version = "1", features = ["derive"] } +structopt = { version = "0.3.17", default-features = false } +toml = "0.5" |