27 releases

new 0.1.26 Apr 20, 2024
0.1.23 Mar 29, 2024
0.1.17 Dec 16, 2023
0.1.16 Nov 17, 2023
0.1.6 Mar 7, 2023

#8 in Configuration

Download history 17061/week @ 2024-01-05 17426/week @ 2024-01-12 19042/week @ 2024-01-19 16727/week @ 2024-01-26 20314/week @ 2024-02-02 20626/week @ 2024-02-09 23916/week @ 2024-02-16 31185/week @ 2024-02-23 38862/week @ 2024-03-01 49217/week @ 2024-03-08 45138/week @ 2024-03-15 23954/week @ 2024-03-22 18801/week @ 2024-03-29 18073/week @ 2024-04-05 17013/week @ 2024-04-12 15178/week @ 2024-04-19

72,687 downloads per month
Used in 17 crates (8 directly)

Apache-2.0 OR MIT

240KB
4.5K SLoC

cargo-config2

crates.io docs.rs license msrv github actions

Load and resolve Cargo configuration.

This library is intended to accurately emulate the actual behavior of Cargo configuration, for example, this supports the following behaviors:

Supported tables and fields are mainly based on cargo-llvm-cov's use cases, but feel free to submit an issue if you see something missing in your use case.

Usage

Add this to your Cargo.toml:

[dependencies]
cargo-config2 = "0.1"

cargo-config2 is usually runnable with Cargo versions older than the Rust version required for build. (e.g., a cargo subcommand using cargo-config2 could work with older versions such as cargo +1.59 <subcommand>.)

Examples

// Read config files hierarchically from the current directory, merge them,
// apply environment variables, and resolve relative paths.
let config = cargo_config2::Config::load()?;
let target = "x86_64-unknown-linux-gnu";
// Resolve target-specific configuration (`target.<triple>` and `target.<cfg>`),
// and returns the resolved rustflags for `target`.
let rustflags = config.rustflags(target)?;
println!("{rustflags:?}");

See also the get example that partial re-implementation of cargo config get using cargo-config2.

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.

Third party software

This product includes copies and modifications of software developed by third parties:

See the license files included in these directories for more details.

Dependencies

~2–10MB
~103K SLoC