5 releases (stable)

1.1.0 Mar 26, 2024
1.0.2 Mar 23, 2023
1.0.1 Jun 24, 2022
1.0.0 Jun 11, 2022
1.0.0-rc.1 Mar 7, 2022

#38 in Configuration

Download history 668/week @ 2023-12-25 431/week @ 2024-01-01 549/week @ 2024-01-08 619/week @ 2024-01-15 579/week @ 2024-01-22 634/week @ 2024-01-29 665/week @ 2024-02-05 579/week @ 2024-02-12 506/week @ 2024-02-19 689/week @ 2024-02-26 745/week @ 2024-03-04 656/week @ 2024-03-11 770/week @ 2024-03-18 789/week @ 2024-03-25 705/week @ 2024-04-01 444/week @ 2024-04-08

2,787 downloads per month
Used in 2 crates

Apache-2.0

81KB
2K SLoC

ec4rs: EditorConfig For Rust

CI crates.io API docs

An EditorConfig core in safe Rust.

This library enables you to integrate EditorConfig support into any tools which may benefit from it, such as code editors, formatters, and style linters. It includes mechanisms for type-safe parsing of properties, so that your tool doesn't have to do it itself. It also exposes significant portions of its logic, allowing you to use only the parts you need.

Name idea shamelessly stolen from ec4j. This library has minimal dependencies (only std at this time).

For example usage, see the docs.

Testing

The main repository for this library includes the EditorConfig core tests as a Git submodule. This library should pass all of these tests. To run the test suite, run the following commands in a POSIX-like shell:

cargo build --package ec4rs_tools
git submodule update --init --recursive
cmake -DEDITORCONFIG_CMD="$PWD/target/debug/ec4rs-parse" -Stests -Btests
ctest --test-dir tests

License

ec4rs is licensed under the Apache License 2.0 with no NOTICE text.

Contributors submitting code changes must agree to the terms of the Developer Certificate of Origin (DCO) to have their contributions accepted for inclusion. A copy of the DCO may be found in DCO.txt. Contributors should sign-off on their commits (see git commit -s) to indicate explicit agreement.

Dependencies

~125KB