-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 696 Bytes
/
Cargo.toml
File metadata and controls
26 lines (24 loc) · 696 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
[package]
name = "pyql"
authors = ["AmrDeveloper"]
version = "0.1.0"
edition = "2021"
description = "A tool to run SQL-like query on your Python source code files"
license = "MIT"
repository = "https://github.com/amrdeveloper/pyql/"
documentation = "https://github.com/amrdeveloper/pyql"
readme = "README.md"
keywords = ["python", "pyql", "language", "gitql", "llvm"]
categories = ["command-line-utilities"]
exclude = [".github/**", "docs/**", "media/**", "scripts/**"]
[dependencies]
gitql-core = "0.9.0"
gitql-std = "0.9.0"
gitql-ast = "0.29.0"
gitql-parser = "0.31.0"
gitql-engine = "0.32.0"
gitql-cli = "0.32.0"
lineeditor = "0.4.1"
rustpython-parser = "0.4.0"
[profile.release]
lto = true