Skip to content
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
8e73d5f
feat(hashicorp): implementing support for hashicorp for storing secrets
NishantJoshi00 Jan 9, 2024
58e3015
chore: implement hashicorp everywhere
NishantJoshi00 Jan 9, 2024
385ed0e
chore: run formatter
hyperswitch-bot[bot] Jan 9, 2024
1561b20
chore: rename error variant
NishantJoshi00 Jan 10, 2024
1d75d01
Merge https://github.com/juspay/hyperswitch into hashicorp
NishantJoshi00 Jan 10, 2024
8df21b4
Merge branch 'hashicorp' of https://github.com/juspay/hyperswitch int…
NishantJoshi00 Jan 10, 2024
3a15ff8
fix(api_key): add vault for api keys
NishantJoshi00 Jan 10, 2024
ed8e8ce
chore: run formatter
hyperswitch-bot[bot] Jan 10, 2024
cc6b531
chore: fix formatting
NishantJoshi00 Jan 10, 2024
2d6bb2e
Merge https://github.com/juspay/hyperswitch into hashicorp
NishantJoshi00 Jan 10, 2024
f25cc6d
Merge branch 'hashicorp' of https://github.com/juspay/hyperswitch int…
NishantJoshi00 Jan 10, 2024
b1e137f
chore: fix typos
NishantJoshi00 Jan 10, 2024
9d689d5
chore: fix fmt
NishantJoshi00 Jan 11, 2024
39634aa
chore: fix ci checks
NishantJoshi00 Jan 12, 2024
7f0369e
Merge https://github.com/juspay/hyperswitch into hashicorp
NishantJoshi00 Jan 22, 2024
109de0b
Merge branch 'main' of https://github.com/juspay/hyperswitch into has…
NishantJoshi00 Jan 22, 2024
92c1bc8
chore: fix cargo lock file
NishantJoshi00 Jan 22, 2024
b724c5e
chore: update tokio and tracing deps
NishantJoshi00 Jan 22, 2024
f823551
chore: fix time crate deps
NishantJoshi00 Jan 22, 2024
7d0648f
chore: fix clippy issues
NishantJoshi00 Jan 22, 2024
49f53c9
chore: fix ver issues
NishantJoshi00 Jan 22, 2024
c71f6fd
chore: ignore type complixity errors
NishantJoshi00 Jan 22, 2024
c234716
chore: fix Makefile changes
NishantJoshi00 Jan 22, 2024
92df63a
Merge branch 'main' into hashicorp
NishantJoshi00 Jan 23, 2024
8c04d9e
Merge branch 'main' into hashicorp
NishantJoshi00 Jan 23, 2024
ceafacd
Merge branch 'main' into hashicorp
NishantJoshi00 Jan 24, 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
1 change: 1 addition & 0 deletions .typos.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ ba = "ba" # ignore minor commit conversions
ede = "ede" # ignore minor commit conversions
daa = "daa" # Commit id
afe = "afe" # Commit id
Hashi = "Hashi" # HashiCorp

[files]
extend-exclude = [
Expand Down
192 changes: 174 additions & 18 deletions Cargo.lock

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

2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ ROOT_DIR := $(realpath $(ROOT_DIR_WITH_SLASH))
#
# Usage :
# make build
check:
cargo c

build :
cargo build
Expand Down
1 change: 1 addition & 0 deletions crates/drainer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ license.workspace = true
[features]
release = ["kms", "vergen"]
kms = ["external_services/kms"]
hashicorp-vault = ["external_services/hashicorp-vault"]
vergen = ["router_env/vergen"]

[dependencies]
Expand Down
Loading