[package]
edition = "2024"
rust-version = "1.91"
name = "datafusion-openlineage"
version = "0.0.7"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "OpenLineage integration for Apache DataFusion sessions"
homepage = "https://github.com/open-lakehouse/headwaters/tree/main/crates/open-lineage"
documentation = "https://docs.rs/datafusion-openlineage"
readme = "README.md"
keywords = [
"datafusion",
"openlineage",
"lineage",
"observability",
]
categories = [
"database",
"development-tools::debugging",
]
license = "Apache-2.0"
repository = "https://github.com/open-lakehouse/headwaters"
resolver = "2"
[features]
default = ["http"]
http = ["openlineage-client/http"]
marquez-it = ["http"]
[lib]
name = "datafusion_openlineage"
path = "src/lib.rs"
[[example]]
name = "e2e_pipeline"
path = "examples/e2e_pipeline/main.rs"
[[test]]
name = "column_lineage"
path = "tests/column_lineage.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "e2e_pipeline"
path = "tests/e2e_pipeline.rs"
[[test]]
name = "lineage"
path = "tests/lineage.rs"
[[test]]
name = "marquez_acceptance"
path = "tests/marquez_acceptance.rs"
[dependencies.async-trait]
version = "^0.1.89"
[dependencies.chrono]
version = "0.4.44"
features = ["serde"]
[dependencies.datafusion]
version = "54"
[dependencies.futures]
version = "0.3.32"
[dependencies.openlineage-client]
version = "0.0.4"
default-features = false
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1.47"
features = [
"macros",
"rt",
"sync",
]
[dependencies.tracing]
version = "0.1"
features = ["log"]
[dependencies.uuid]
version = "1"
features = [
"v4",
"v5",
"v7",
"serde",
]
[dev-dependencies.jsonschema]
version = "0.46"
[dev-dependencies.reqwest]
version = "0.12"
features = ["json"]
[dev-dependencies.testcontainers]
version = "0.27"
features = ["http_wait"]
[dev-dependencies.tokio]
version = "1.47"
features = [
"macros",
"rt",
"sync",
"full",
]
[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.url]
version = "2.5.2"
features = [
"serde",
"std",
]
default-features = false
[dev-dependencies.uuid]
version = "1"
features = [
"v4",
"v5",
"v7",
]