Skip to content
This repository was archived by the owner on Jan 18, 2026. It is now read-only.

Commit 452ec36

Browse files
feat: add dependabot for updating cargo dependencies (#11)
* feat: add dependabot for updating cargo dependencies * fix: ignore some dependency updates to avoid refactor of code temporarily
1 parent 35d93d3 commit 452ec36

File tree

3 files changed

+25
-13
lines changed

3 files changed

+25
-13
lines changed

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: cargo
4+
directory: /
5+
schedule:
6+
interval: monthly
7+
# TODO: wait for refactor the related code
8+
ignore:
9+
- dependency-name: rand
10+
- dependency-name: rand_chacha
11+
- dependency-name: elliptic-curve
12+
- dependency-name: p256

Cargo.lock

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "examples"
2+
name = "mania-examples"
33
description = "examples for mania"
44
version.workspace = true
55
edition.workspace = true

0 commit comments

Comments
 (0)