Skip to content

Commit

Permalink
feat: support importing a gpg key through the use of an environment v…
Browse files Browse the repository at this point in the history
…ariable (#3)
  • Loading branch information
purpleclay authored Jun 6, 2023
1 parent d1e9112 commit ef32a6e
Show file tree
Hide file tree
Showing 6 changed files with 602 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
target/
.git/
.gitignore
Dockerfile
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
358 changes: 358 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[package]
name = "gpg-import"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
base64 = "0.21.1"
chrono = { version = "0.4.24", default-features = false, features = ["time", "clock", "std"] }
exitcode = "1.1.2"
nom = "7.1.3"
Loading

0 comments on commit ef32a6e

Please sign in to comment.