Files
sqlfluff/sqlfluffrs/Cargo.toml
github-actions[bot] ef33b2d7a1 Prep version 4.0.0a2 (#7268)
Co-authored-by: alanmcruickshank <4670904+alanmcruickshank@users.noreply.github.com>
Co-authored-by: Alan <alan@a14k.co.uk>
2025-11-12 00:31:08 +00:00

51 lines
1.4 KiB
TOML

[package]
name = "sqlfluffrs"
# NOTE: Version uses Rust SemVer format (e.g., "4.0.0-alpha.1").
# Maturin automatically converts this to PEP 440 format for the Python package (e.g., "4.0.0a1").
# See: https://www.maturin.rs/metadata.html
version = "4.0.0-alpha.2"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "sqlfluffrs"
crate-type = ["cdylib", "rlib"]
[workspace]
members = [
"sqlfluffrs_dialects",
"sqlfluffrs_lexer",
"sqlfluffrs_types",
]
[features]
unicode = []
python = ["unicode", "pyo3", "sqlfluffrs_lexer/python", "sqlfluffrs_types/python"]
[dependencies]
env_logger = "0.11.8"
regex = { version = "1.11.2", features = ["perf"] }
fancy-regex = "0.16.2"
hashbrown = "0.15.5"
itertools = "0.14.0"
log = "0.4.28"
once_cell = "1.21.3"
pyo3 = { version = "0.26.0", optional = true, features = ["hashbrown", "extension-module", "uuid"] }
pyo3-log = { version = "0.13.0", optional = true }
slotmap = "1.0.7"
uuid = { version = "1.18.1", features = ["v4"] }
serde = { version = "1.0.225", features = ["derive"] }
serde_json = "1.0.145"
# serde_yaml = "0.9"
serde_yaml_ng = "0.10.0"
bincode = "1.3.3"
blake2 = "0.10.6"
sqlfluffrs_types = { path = "sqlfluffrs_types" }
sqlfluffrs_lexer = { path = "sqlfluffrs_lexer" }
sqlfluffrs_dialects = { path = "sqlfluffrs_dialects" }
[dev-dependencies]
env_logger = "0.11.6"
criterion = "0.7.0"
flamegraph = "0.6.8"