-
Notifications
You must be signed in to change notification settings - Fork 19
/
Cargo.toml
38 lines (31 loc) · 955 Bytes
/
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
[workspace.package]
version = "0.21.11"
repository = "https://github.com/quarylabs/sqruff"
edition = "2021"
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"
# https://github.com/rustwasm/wasm-bindgen/issues/3451#issuecomment-1562982835
[profile.dev]
opt-level = "s"
[profile.release]
lto = true
codegen-units = 1
[workspace.dependencies]
ahash = { version = "0.8.11", features = ["compile-time-rng", "serde"] }
indexmap = "2.7.0"
sqruff-lib = { version = "0.21.11", path = "crates/lib" }
sqruff-lsp = { version = "0.21.11", path = "crates/lsp" }
sqruff-lib-core = { version = "0.21.11", path = "crates/lib-core" }
sqruff-lib-dialects = { version = "0.21.11", path = "crates/lib-dialects"}
wasm-bindgen = "0.2"
wasm-pack = "0.13.0"
strum = "0.26.3"
strum_macros = "0.26.4"