forked from AmrDeveloper/GQL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (33 loc) · 1.19 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
[package]
name = "gitql"
authors = ["AmrDeveloper"]
version = "0.23.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.63.0", default-features = false }
[dependencies]
gitql-core = { path = "./crates/gitql-core", version = "0.2.0" }
gitql-std = { path = "./crates/gitql-std", version = "0.2.0" }
gitql-ast = { path = "./crates/gitql-ast", version = "0.20.0" }
gitql-parser = { path = "./crates/gitql-parser", version = "0.22.0" }
gitql-engine = { path = "./crates/gitql-engine", version = "0.23.0" }
gitql-cli = { path = "./crates/gitql-cli", version = "0.23.0" }
gix = { workspace = true, features = ["blob-diff", "max-performance"] }
atty = "0.2.14"