-
-
Notifications
You must be signed in to change notification settings - Fork 89
/
Cargo.toml
48 lines (42 loc) · 1.44 KB
/
Cargo.toml
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
46
47
48
[package]
name = "gitql"
authors = ["AmrDeveloper"]
version = "0.30.0"
edition = "2021"
description = "A SQL like query language to perform queries on .git files"
license = "MIT"
repository = "https://github.com/amrdeveloper/gql/"
documentation = "https://github.com/amrdeveloper/gql"
readme = "README.md"
keywords = ["gitql", "gitql-sdk", "gql", "git", "sql"]
categories = ["command-line-utilities"]
exclude = [".github/**", "docs/**", "media/**", "scripts/**"]
[workspace]
members = [
"crates/gitql-core",
"crates/gitql-std",
"crates/gitql-ast",
"crates/gitql-cli",
"crates/gitql-parser",
"crates/gitql-engine",
]
[workspace.dependencies]
gix = { version = "0.67.0", default-features = false }
[profile.release]
lto = true
[dependencies]
gitql-core = { path = "./crates/gitql-core", version = "0.7.0" }
gitql-std = { path = "./crates/gitql-std", version = "0.7.0" }
gitql-ast = { path = "./crates/gitql-ast", version = "0.27.0" }
gitql-parser = { path = "./crates/gitql-parser", version = "0.29.0" }
gitql-engine = { path = "./crates/gitql-engine", version = "0.30.0" }
gitql-cli = { path = "./crates/gitql-cli", version = "0.30.0" }
lineeditor = "0.4.1"
gix = { workspace = true, features = ["blob-diff", "max-performance"] }
[dev-dependencies]
criterion = "0.5.1"
# Run all benchmarks with `cargo bench`
# Run individual benchmarks like `cargo bench -- <regex>` e.g. `cargo bench -- tokenizer`
[[bench]]
name = "benchmarks"
harness = false