json_compilation_db

Crates.iojson_compilation_db
lib.rsjson_compilation_db
version1.0.1
sourcesrc
created_at2019-10-23 08:16:59.691497
updated_at2024-07-27 21:03:04.13069
descriptionRust crate to read/write JSON compilation database file.
homepagehttps://github.com/rizsotto/json_compilation_db
repositoryhttps://github.com/rizsotto/json_compilation_db
max_upload_size
id174810
size25,914
László Nagy (rizsotto)

documentation

https://docs.rs/json_compilation_db/

README

JSON Compilation Database

This crate provides support for reading and writing JSON compilation database files.

Overview

A compilation database is a set of records which describe the compilation of the source files in a given project. It describes the compiler invocation command to compile a single source file to an object file.

This database can have many forms. One well known and supported format is the JSON compilation database, which is a simple JSON file having the list of compilation as an array. The definition of the JSON compilation database files is done in the LLVM project documentation.

Usage

First, add this to your Cargo.toml:

[dependencies]
json_compilation_db = "1.0"

License

This project is licensed under the MIT license.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in json_compilation_db by you, shall be licensed as MIT, without any additional terms or conditions.

Commit count: 71

cargo fmt