Skip to content

Commit df1dab7

Browse files
authored
Merge pull request #308 from cipherstash/scoped-cipher-lru
feat: ✨ add configurable cipher caching with async Moka
2 parents a869981 + 50e3d9c commit df1dab7

File tree

15 files changed

+442
-21
lines changed

15 files changed

+442
-21
lines changed

.claude/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"includeCoAuthoredBy": false
3+
}

.github/workflows/benchmark.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
CS_DEFAULT_KEYSET_ID: ${{ secrets.CS_DEFAULT_KEYSET_ID }}
3434
CS_CLIENT_ID: ${{ secrets.CS_CLIENT_ID }}
3535
CS_CLIENT_KEY: ${{ secrets.CS_CLIENT_KEY }}
36-
CS_WORKSPACE_CRN: "crn:ap-southeast-2.aws:${{ secrets.CS_WORKSPACE_ID }}"
36+
CS_WORKSPACE_CRN: ${{ secrets.CS_WORKSPACE_CRN }}
3737
RUST_BACKTRACE: "1"
3838
run: mise run benchmark:continuous
3939
# Download previous benchmark result from cache (if exists)
@@ -47,7 +47,7 @@ jobs:
4747
uses: benchmark-action/github-action-benchmark@v1
4848
with:
4949
# What benchmark tool the output.txt came from
50-
tool: 'customSmallerIsBetter'
50+
tool: 'customBiggerIsBetter'
5151
# Where the output from the benchmark tool is stored
5252
output-file-path: tests/benchmark/results/output.json
5353

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
CS_TENANT_KEYSET_NAME_3: ${{ secrets.CS_TENANT_KEYSET_NAME_3 }}
3434
CS_CLIENT_ID: ${{ secrets.CS_CLIENT_ID }}
3535
CS_CLIENT_KEY: ${{ secrets.CS_CLIENT_KEY }}
36-
CS_WORKSPACE_CRN: "crn:ap-southeast-2.aws:${{ secrets.CS_WORKSPACE_ID }}"
36+
CS_WORKSPACE_CRN: ${{ secrets.CS_WORKSPACE_CRN }}
3737
RUST_BACKTRACE: "1"
3838
run: |
3939
mise run --output prefix test

0 commit comments

Comments
 (0)