forked from quarylabs/sqruff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (33 loc) · 1017 Bytes
/
Cargo.toml
File metadata and controls
40 lines (33 loc) · 1017 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[workspace.package]
version = "0.38.2"
repository = "https://github.com/quarylabs/sqruff"
edition = "2024"
license = "Apache-2.0"
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.lints.rust]
unreachable_pub = "warn"
unused_qualifications = "warn"
[workspace.lints.clippy]
perf = "warn"
cloned_instead_of_copied = "warn"
[profile.release]
lto = true
codegen-units = 1
[workspace.dependencies]
log = "0.4"
indexmap = "2.14.0"
hashbrown = { version = "0.17", features = ["serde"] }
sqruff-cli-lib = { version = "0.38.2", path = "crates/cli-lib" }
sqruff-lib = { version = "0.38.2", path = "crates/lib" }
sqruff-lsp = { version = "0.38.2", path = "crates/lsp" }
sqruff-lib-core = { version = "0.38.2", path = "crates/lib-core" }
sqruff-lib-dialects = { version = "0.38.2", path = "crates/lib-dialects" }
wasm-bindgen = "=0.2.105"
wasm-pack = "0.13.1"
strum = "0.28.0"
strum_macros = "0.28.0"
# Codegen dependencies (used by codegen-docs feature in cli-lib)
clap-markdown = "0.1.5"
minijinja = "2.16.0"