-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 762 Bytes
/
Cargo.toml
File metadata and controls
27 lines (25 loc) · 762 Bytes
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
[package]
name = "clangql"
authors = ["AmrDeveloper"]
version = "0.11.0"
edition = "2021"
description = "A tool to run SQL-like query on your C/C++ Abstract syntax tree"
license = "MIT"
repository = "https://github.com/amrdeveloper/clangql/"
documentation = "https://github.com/amrdeveloper/clangql"
readme = "README.md"
keywords = ["cli", "files", "language", "gitql", "clangql"]
categories = ["command-line-utilities"]
exclude = [".github/**", "docs/**", "media/**", "scripts/**"]
[dependencies]
gitql-core = "0.20.0"
gitql-std = "0.20.0"
gitql-cli = "0.43.0"
gitql-ast = "0.39.0"
gitql-parser = "0.42.0"
gitql-engine = "0.43.0"
clang-sys = { version = "1.8.1", features = ["clang_18_0"] }
dyn-clone = "1.0.19"
[profile.release]
codegen-units = 1
lto = true