6 releases

0.3.0 Oct 6, 2023
0.2.0 Aug 2, 2023
0.1.3 Apr 17, 2023
0.1.2 Dec 6, 2021

#241 in Development tools

Download history 685/week @ 2023-12-23 1758/week @ 2023-12-30 2192/week @ 2024-01-06 2347/week @ 2024-01-13 1385/week @ 2024-01-20 1545/week @ 2024-01-27 2183/week @ 2024-02-03 2850/week @ 2024-02-10 4559/week @ 2024-02-17 5784/week @ 2024-02-24 5003/week @ 2024-03-02 6072/week @ 2024-03-09 5171/week @ 2024-03-16 3674/week @ 2024-03-23 4135/week @ 2024-03-30 5179/week @ 2024-04-06

19,404 downloads per month
Used in 41 crates (2 directly)

MIT/Apache

12KB
127 lines

clang-format-rs

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");
}

Tests

The test suite can be executed using the tests.sh script.

./tests.sh

Licensing

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 info@kdab.com to inquire about additional features or services related to this project.

About KDAB

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.

Dependencies

~320–780KB
~18K SLoC