1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2021"
name = "compile_commands"
version = "0.3.0"
authors = ["Will Lillis"]
build = false
publish = true
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Work with compile_commands.json and compile_flags.txt in Rust programs."
homepage = "https://github.com/WillLillis/compile_commands"
documentation = "https://docs.rs/compile_commands/latest/compile_commands/"
readme = "README.md"
keywords = [
"clang",
"llvm",
"compile",
]
categories = ["development-tools"]
license = "Apache-2.0"
repository = "https://github.com/WillLillis/compile_commands"
[lib]
name = "compile_commands"
path = "src/lib.rs"
[dependencies.serde]
version = "1.0.204"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.120"
|