29 releases (breaking)

0.36.0 Mar 14, 2024
0.34.0 Jan 20, 2024
0.33.1 Dec 30, 2023
0.31.0 Oct 12, 2023
0.20.1 Mar 30, 2023

#18 in Configuration

Download history 110304/week @ 2023-12-06 110932/week @ 2023-12-13 89519/week @ 2023-12-20 91245/week @ 2023-12-27 107162/week @ 2024-01-03 108227/week @ 2024-01-10 118345/week @ 2024-01-17 122005/week @ 2024-01-24 133456/week @ 2024-01-31 134215/week @ 2024-02-07 128594/week @ 2024-02-14 131153/week @ 2024-02-21 138947/week @ 2024-02-28 137553/week @ 2024-03-06 147746/week @ 2024-03-13 133043/week @ 2024-03-20

579,182 downloads per month
Used in 172 crates (8 directly)

MIT/Apache

725KB
14K SLoC

gix-config

gix-config is a library for interacting with git-config files.

This crate intents to be a performant Rust implementation for reading and writing git-config files. It exposes tiers of abstractions, from simple config value wrappers to a high level reader and writer.

The highlight of this crate is the zero-copy parser. We employ techniques to avoid copying where necessary, and reads that do not need normalization are guaranteed to be zero-copy. Higher level abstractions maintain this guarantee, and utilizes acceleration structures for increased performance.

Currently, this is not a binary. While we do intent to have a drop-in replacement for the git config sub-command, we're currently missing system-level abstractions to do so.

Contributing

Contributions are always welcome!

Code quality

This repository enables pedantic, cargo, and nursery clippy lints. Make sure to run cargo clean && cargo clippy (the clean stage is very important!) to ensure your code is linted.

Testing

Since this is a performance oriented crate, in addition to well tested code via cargo test, we also perform benchmarks to measure notable gains or losses in performance. We use criterion so benches can be run via cargo bench after installing it via cargo install cargo-criterion.

Changes to parsing code may include a request to fuzz to ensure that it cannot panic on inputs. This can be done by executing cargo +nightly fuzz run parse after installing the fuzz sub-command via cargo install cargo-fuzz.

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 gix-config by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~7–19MB
~266K SLoC