Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(init): Add the new/init subcommands #85

Draft
wants to merge 27 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
35be41d
feat(init): Add the new/init subcommands
gmpinder Feb 25, 2024
3db2762
Merge branch 'main' into 34-feat-finish-init-command
gmpinder Feb 25, 2024
f55d98d
Cleaning up Cargo.toml
gmpinder Feb 25, 2024
2f5d91d
Merge branch 'main' into 34-feat-finish-init-command
gmpinder Mar 2, 2024
b3113f7
Merge branch 'main' into 34-feat-finish-init-command
gmpinder Mar 5, 2024
aee2e84
Merge branch 'main' into 34-feat-finish-init-command
gmpinder Mar 19, 2024
f498629
Merge branch 'main' into 34-feat-finish-init-command
gmpinder Apr 12, 2024
0d5d3f3
Merge branch 'main' into 34-feat-finish-init-command
gmpinder May 27, 2024
8503441
Merge branch 'main' into 34-feat-finish-init-command
gmpinder Jun 3, 2024
30d2f04
Merge branch 'main' into 34-feat-finish-init-command
gmpinder Jun 26, 2024
d59b968
Go back to basics
gmpinder Jun 28, 2024
ae5a2a9
Start work on the SigningDriver
gmpinder Jun 28, 2024
5b4e4d3
Template README
gmpinder Jun 29, 2024
5e3f1ef
Add initial commit
gmpinder Jun 30, 2024
0df9490
Merge branch 'main' into 34-feat-finish-init-command
gmpinder Jun 30, 2024
d4b1629
Rework driver usage
gmpinder Jul 1, 2024
2051d0b
Move traits into their own file
gmpinder Jul 5, 2024
88980bc
Merge branch 'main' into 34-feat-finish-init-command
gmpinder Jul 5, 2024
bdfc2c9
Merge branch 'main' into 34-feat-finish-init-command
gmpinder Aug 13, 2024
747f4cc
Remove old drivers
gmpinder Aug 13, 2024
1abce0e
Add ci-provider and make sure to add files before commit
gmpinder Aug 15, 2024
55c7a66
Merge branch 'main' into 34-feat-finish-init-command
gmpinder Aug 16, 2024
751d72f
Start creating questions
gmpinder Aug 16, 2024
e942c06
Merge branch 'main' into 34-feat-finish-init-command
gmpinder Aug 24, 2024
c8d3b5a
Some more progress on init
gmpinder Aug 24, 2024
e7cc72a
Merge branch 'main' into 34-feat-finish-init-command
gmpinder Aug 25, 2024
3b4b393
Merge branch 'main' into 34-feat-finish-init-command
gmpinder Sep 29, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'main' into 34-feat-finish-init-command
  • Loading branch information
gmpinder committed Feb 25, 2024
commit 3db2762f581e57528f5c222d26cf286d68d35379
18 changes: 11 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,16 @@ signal-hook-tokio = { version = "0.3.1", features = [
], optional = true }
sigstore = { version = "0.8.0", optional = true }
tokio = { version = "1", features = ["full"], optional = true }
typed-builder = "0.18.1"
urlencoding = "2.1.3"
users = "0.11.0"
uuid = { version = "1.7.0", features = ["v4"] }
which = "6"
ureq = { version = "2.9.6", features = ["json"] }
ureq = { version = "2.9.6", features = ["json"], optional = true }

# Workspace dependencies
anyhow.workspace = true
log.workspace = true
serde.workspace = true
serde_json.workspace = true
serde_yaml.workspace = true
typed-builder.workspace = true
uuid.workspace = true

[features]
default = ["init"]
Expand All @@ -84,7 +88,7 @@ builtin-podman = [
"signal-hook",
]
tls = ["podman-api/tls", "builtin-podman"]
init = []
init = ["ureq"]

[dev-dependencies]
rusty-hook = "0.11.2"
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.