-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 755 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 755 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
28
29
[package]
name = "llql"
authors = ["AmrDeveloper"]
version = "0.11.0"
edition = "2021"
description = "A tool to run SQL-like query on your LLVM IR or Bitcode files"
license = "MIT"
repository = "https://github.com/amrdeveloper/llql/"
documentation = "https://github.com/amrdeveloper/llql"
readme = "README.md"
keywords = ["llvm-ir", "bitcode", "language", "gitql", "llvm"]
categories = ["command-line-utilities"]
exclude = [".github/**", "docs/**", "media/**", "scripts/**"]
[dependencies]
gitql-core = "0.20.0"
gitql-std = "0.20.0"
gitql-ast = "0.39.0"
gitql-parser = "0.42.0"
gitql-engine = "0.43.0"
gitql-cli = "0.43.0"
inkwell = { version = "0.8.0", features = ["llvm21-1"] }
lineeditor = "0.4.1"
dyn-clone = "1.0.20"
[profile.release]
lto = true