GitXplorerGitXplorer
t

dependabot-config

public
3 stars
2 forks
0 issues

Commits

List of commits on branch main.
Unverified
377dec785615e90f2340b2afb9ab5748f21211c6

Fix test and optional field parsing

ttaiki-e committed 2 days ago
Unverified
4b1bb130312b91788480adfbc2ab53ed91bd3825

ci: Disable buggy dependabot grouped update

ttaiki-e committed 2 days ago
Unverified
4fe7a258ad3d7a9d316e9f66efc1b3da84a3cf50

tools: Format shell scripts with indent_size = 2 to match scripts in CI config

ttaiki-e committed 2 days ago
Unverified
85e904b3efe4417036f488d0b2bd8c0f0eda1ca0

Add MSRV reason comment

ttaiki-e committed 5 days ago
Unverified
16030081d3f40fc80de7f135aea96eb2a24c68bb

Apply clippy::unused_trait_names lint

ttaiki-e committed 5 days ago
Unverified
64fc8ec4382b89871f8a97b44244a98f0840cb84

ci: Update reusable workflows

ttaiki-e committed 6 days ago

README

The README file for this repository.

dependabot-config

crates.io docs.rs license msrv github actions

Structured access to the Dependabot configuration file.

Usage

Add this to your Cargo.toml:

[dependencies]
dependabot-config = "0.3"

Examples

use std::fs;

use dependabot_config::v2::Dependabot;

let s = fs::read_to_string(".github/dependabot.yml")?;
let dependabot: Dependabot = s.parse()?;
for update in dependabot.updates {
    println!("{}", update.package_ecosystem);
}

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.