this repo has no description

Setup dependabot for Rust

authored by sobolevn and committed by Louis Pilfold 5aeb5b85 9e382d60

Changed files
+27
.github
+3
.gitattributes
··· 5 5 6 6 # Tests: 7 7 test-package-compiler/src/generated_tests.rs generated 8 + 9 + # Lock files: 10 + Cargo.lock generated
+24
.github/dependabot.yml
··· 5 5 schedule: 6 6 interval: weekly 7 7 open-pull-requests-limit: 10 8 + 9 + # Rust: 10 + - package-ecosystem: "cargo" 11 + directory: "/" 12 + schedule: 13 + interval: "weekly" 14 + - package-ecosystem: "cargo" 15 + directory: "/compiler-cli" 16 + schedule: 17 + interval: "weekly" 18 + - package-ecosystem: "cargo" 19 + directory: "/compiler-core" 20 + schedule: 21 + interval: "weekly" 22 + - package-ecosystem: "cargo" 23 + directory: "/compiler-wasm" 24 + schedule: 25 + interval: "weekly" 26 + - package-ecosystem: "cargo" 27 + # Does not have any custom deps right now, 28 + # but can add them in the future: 29 + directory: "/test-package-compiler" 30 + schedule: 31 + interval: "weekly"