Enable dependabot on the Rust projects

Add a dependabot.yml file to trigger daily dependabot updates on the
four Rust projects in the codebase:

- `node_types`
- `generator`
- `extractor`
- `autobuilder`
This commit is contained in:
Harry Maclean
2021-08-25 15:35:31 +01:00
parent 9c17e00645
commit 0bd7e5914f

18
.github/dependabot.yml vendored Normal file
View File

@@ -0,0 +1,18 @@
version: 2
updates:
- package-ecosystem: "cargo"
directory: "/node-types"
schedule:
interval: "daily"
- package-ecosystem: "cargo"
directory: "/generator"
schedule:
interval: "daily"
- package-ecosystem: "cargo"
directory: "/extractor"
schedule:
interval: "daily"
- package-ecosystem: "cargo"
directory: "/autobuilder"
schedule:
interval: "daily"