From 85075c4cdac2f2ae5b4b8b1342fd2a08e8c6d6e3 Mon Sep 17 00:00:00 2001 From: Heiko Schaefer Date: Thu, 28 Oct 2021 00:21:39 +0200 Subject: [PATCH] Rename openpgp-card-apps into openpgp-card-examples --- Cargo.toml | 2 +- {openpgp-card-apps => openpgp-card-examples}/Cargo.toml | 4 ++-- {openpgp-card-apps => openpgp-card-examples}/README.md | 0 .../src/bin/decrypt.rs | 0 .../src/bin/detach-sign.rs | 0 5 files changed, 3 insertions(+), 3 deletions(-) rename {openpgp-card-apps => openpgp-card-examples}/Cargo.toml (89%) rename {openpgp-card-apps => openpgp-card-examples}/README.md (100%) rename {openpgp-card-apps => openpgp-card-examples}/src/bin/decrypt.rs (100%) rename {openpgp-card-apps => openpgp-card-examples}/src/bin/detach-sign.rs (100%) diff --git a/Cargo.toml b/Cargo.toml index ebbf02d..dd33793 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ members = [ "openpgp-card-sequoia", "pcsc", "scdc", - "openpgp-card-apps", + "openpgp-card-examples", "tools", "card-functionality", ] diff --git a/openpgp-card-apps/Cargo.toml b/openpgp-card-examples/Cargo.toml similarity index 89% rename from openpgp-card-apps/Cargo.toml rename to openpgp-card-examples/Cargo.toml index bc165ad..e28737a 100644 --- a/openpgp-card-apps/Cargo.toml +++ b/openpgp-card-examples/Cargo.toml @@ -2,14 +2,14 @@ # SPDX-License-Identifier: MIT OR Apache-2.0 [package] -name = "openpgp-card-apps" +name = "openpgp-card-examples" description = "Examples and demos of apps utilizing openpgp-card-sequoia" license = "MIT OR Apache-2.0" version = "0.0.1" authors = ["Wiktor Kwapisiewicz "] edition = "2018" repository = "https://gitlab.com/hkos/openpgp-card" -documentation = "https://docs.rs/crate/openpgp-card-apps" +documentation = "https://docs.rs/crate/openpgp-card-examples" [dependencies] sequoia-openpgp = "1.3" diff --git a/openpgp-card-apps/README.md b/openpgp-card-examples/README.md similarity index 100% rename from openpgp-card-apps/README.md rename to openpgp-card-examples/README.md diff --git a/openpgp-card-apps/src/bin/decrypt.rs b/openpgp-card-examples/src/bin/decrypt.rs similarity index 100% rename from openpgp-card-apps/src/bin/decrypt.rs rename to openpgp-card-examples/src/bin/decrypt.rs diff --git a/openpgp-card-apps/src/bin/detach-sign.rs b/openpgp-card-examples/src/bin/detach-sign.rs similarity index 100% rename from openpgp-card-apps/src/bin/detach-sign.rs rename to openpgp-card-examples/src/bin/detach-sign.rs