diff options
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" |