Skip to content

Commit 99a52dc

Browse files
MarkAtwoodclaude
andcommitted
chore: add Dependabot for weekly Cargo dependency updates
Groups RustCrypto trait crates (digest, aead, signature, etc.) into a single PR since a semver bump there requires updating all trait implementations simultaneously. RustCrypto impl crates (sha2, aes-gcm, p256, etc.) are grouped separately. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent c295ca0 commit 99a52dc

1 file changed

Lines changed: 38 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "cargo"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
day: "monday"
8+
# Group all RustCrypto trait crates into one PR — a semver bump there
9+
# requires updating all implementations at once anyway.
10+
groups:
11+
rustcrypto-traits:
12+
patterns:
13+
- "digest"
14+
- "aead"
15+
- "cipher"
16+
- "signature"
17+
- "hmac"
18+
- "cmac"
19+
- "hkdf"
20+
- "pbkdf2"
21+
- "rand_core"
22+
- "rand"
23+
rustcrypto-impl:
24+
patterns:
25+
- "sha2"
26+
- "sha3"
27+
- "sha1"
28+
- "aes"
29+
- "aes-gcm"
30+
- "chacha20"
31+
- "chacha20poly1305"
32+
- "p256"
33+
- "p384"
34+
- "p521"
35+
- "elliptic-curve"
36+
- "ecdsa"
37+
- "ed25519"
38+
- "ed25519-dalek"

0 commit comments

Comments
 (0)