[package]
edition = "2021"
name = "flowscope-core"
version = "0.3.1"
authors = ["PondPilot Team"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core SQL lineage analysis engine"
homepage = "https://flowscope.pondpilot.io"
documentation = "https://docs.rs/flowscope-core"
readme = "README.md"
keywords = [
"sql",
"lineage",
"analysis",
"parser",
"metadata",
]
categories = [
"database",
"parser-implementations",
]
license = "Apache-2.0"
repository = "https://github.com/pondpilot/flowscope"
[features]
default = ["templating"]
templating = ["dep:minijinja"]
tracing = ["dep:tracing"]
[lib]
name = "flowscope_core"
path = "src/lib.rs"
[[test]]
name = "completion_items"
path = "tests/completion_items.rs"
[[test]]
name = "completion_snapshots"
path = "tests/completion_snapshots.rs"
[[test]]
name = "golden"
path = "tests/golden.rs"
[[test]]
name = "helpers_naming"
path = "tests/helpers_naming.rs"
[[test]]
name = "lineage_engine"
path = "tests/lineage_engine.rs"
[[test]]
name = "property"
path = "tests/property.rs"
[[test]]
name = "schema_guard"
path = "tests/schema_guard.rs"
[[test]]
name = "scoping"
path = "tests/scoping.rs"
[[test]]
name = "snapshots"
path = "tests/snapshots.rs"
[[test]]
name = "templating"
path = "tests/templating.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.minijinja]
version = "2.14"
features = ["serde"]
optional = true
default-features = false
[dependencies.regex]
version = "1"
[dependencies.schemars]
version = "1.1"
features = ["preserve_order"]
[dependencies.serde]
version = "1.0"
features = [
"derive",
"rc",
]
[dependencies.serde_json]
version = "1.0"
[dependencies.sqlparser]
version = "0.59"
[dependencies.thiserror]
version = "2.0"
[dependencies.tracing]
version = "0.1"
optional = true
[dev-dependencies.insta]
version = "1.45"
features = ["json"]
[dev-dependencies.proptest]
version = "1.9"
[dev-dependencies.rstest]
version = "0.26"
[build-dependencies.indexmap]
version = "2.6"
features = ["serde"]
[build-dependencies.serde]
version = "1.0.215"
features = ["derive"]
[build-dependencies.serde_json]
version = "1.0.133"
[build-dependencies.toml]
version = "0.9"