[package]
edition = "2024"
rust-version = "1.90"
name = "sqry-lang-python"
version = "5.0.1"
authors = ["Verivus Pty Ltd"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "python language plugin for sqry"
readme = false
license = "MIT"
repository = "https://github.com/verivus-oss/sqry"
resolver = "2"
[features]
default = ["has_relations"]
has_relations = []
[lib]
name = "sqry_lang_python"
path = "src/lib.rs"
[[test]]
name = "coverage_tests"
path = "tests/coverage_tests.rs"
[[test]]
name = "local_variable_reference_tests"
path = "tests/local_variable_reference_tests.rs"
[[test]]
name = "property_tests"
path = "tests/property_tests.rs"
[[test]]
name = "typeof_signature_tests"
path = "tests/typeof_signature_tests.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.once_cell]
version = "1.20"
[dependencies.regex]
version = "1.11"
[dependencies.serde_json]
version = "1.0"
[dependencies.sqry-core]
version = "5.0.1"
[dependencies.streaming-iterator]
version = "0.1"
[dependencies.tree-sitter]
version = "0.26"
[dependencies.tree-sitter-python]
version = "0.23.0"
[dev-dependencies.insta]
version = "1.34"
features = ["yaml"]
[dev-dependencies.tempfile]
version = "3.8"