-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 785 Bytes
/
Copy pathCargo.toml
File metadata and controls
26 lines (24 loc) · 785 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
[workspace]
members = ["sqrust-core", "sqrust-rules", "sqrust-cli"]
resolver = "2"
[workspace.package]
version = "0.1.4"
edition = "2021"
license = "MIT"
description = "Fast SQL linter written in Rust — the Ruff for SQL"
repository = "https://github.com/nafistiham/SQRust"
homepage = "https://github.com/nafistiham/SQRust"
readme = "README.md"
keywords = ["sql", "linter", "dbt", "sqlfluff"]
categories = ["command-line-utilities", "development-tools"]
[workspace.dependencies]
sqrust-core = { path = "sqrust-core", version = "0.1.4" }
sqrust-rules = { path = "sqrust-rules", version = "0.1.4" }
sqlparser = "0.53"
serde = { version = "1", features = ["derive"] }
toml = "0.8"
clap = { version = "4", features = ["derive"] }
rayon = "1"
walkdir = "2"
glob = "0.3"
serde_json = "1"