gitql 0.26.0

A SQL like query language to perform queries on .git files
[package]
name = "gitql"
authors = ["AmrDeveloper"]
version = "0.26.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 = ["cli", "gql", "language", "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.64.0", default-features = false }

[dependencies]
gitql-core = { path = "./crates/gitql-core", version = "0.3.0" }
gitql-std = { path = "./crates/gitql-std", version = "0.3.1" }
gitql-ast = { path = "./crates/gitql-ast", version = "0.23.1" }
gitql-parser = { path = "./crates/gitql-parser", version = "0.25.1" }
gitql-engine = { path = "./crates/gitql-engine", version = "0.26.0" }
gitql-cli = { path = "./crates/gitql-cli", version = "0.26.1" }
gix = { workspace = true, features = ["blob-diff", "max-performance"] }
atty = "0.2.14"

[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