A basic clang-format Rust wrapper.
This allows for formatting a given input using clang-format
from the system.
By default it uses clang-format
binary but this can be changed by setting the
CLANG_FORMAT_BINARY
environment variable, for example,
CLANG_FORMAT_BINARY=clang-format-16
use clang_format::{clang_format_with_style, ClangFormatStyle};
fn main() {
let input = r#"
struct Test {
};
"#;
let output = clang_format_with_style(input, ClangFormatStyle::Mozilla);
assert!(output.is_ok());
assert_eq!(output.unwrap(), "\nstruct Test\n{};\n");
}
The test suite can be executed using the tests.sh
script.
./tests.sh
clang-format-rs is Copyright (C) 2021, Klarälvdalens Datakonsult AB, and is available under the terms of the MIT or the Apache-2.0 licenses.
Contact KDAB at [email protected] to inquire about additional features or services related to this project.
clang-format-rs is supported and maintained by Klarälvdalens Datakonsult AB (KDAB).
The KDAB Group is the global No.1 software consultancy for Qt, C++ and OpenGL applications across desktop, embedded and mobile platforms.
The KDAB Group provides consulting and mentoring for developing Qt applications from scratch and in porting from all popular and legacy frameworks to Qt. We continue to help develop parts of Qt and are one of the major contributors to the Qt Project. We can give advanced or standard trainings anywhere around the globe on Qt as well as C++, OpenGL, 3D and more.
Please visit https://www.kdab.com to meet the people who write code like this.