[package]
edition = "2021"
name = "floe-core"
version = "0.1.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core library for Floe, a YAML-driven technical ingestion tool."
homepage = "https://github.com/malon64/floe"
readme = "README.md"
keywords = [
"ingestion",
"data-quality",
"csv",
"polars",
"yaml",
]
license = "MIT"
repository = "https://github.com/malon64/floe"
[lib]
name = "floe_core"
path = "src/lib.rs"
[[test]]
name = "config_validation"
path = "tests/config_validation.rs"
[[test]]
name = "json_ndjson"
path = "tests/json_ndjson.rs"
[[test]]
name = "parquet_input"
path = "tests/parquet_input.rs"
[[test]]
name = "schema_mismatch"
path = "tests/schema_mismatch.rs"
[dependencies.aws-config]
version = "1"
[dependencies.aws-sdk-s3]
version = "1"
[dependencies.deltalake]
version = "0.30.1"
features = ["datafusion"]
[dependencies.glob]
version = "0.3"
[dependencies.polars]
version = "0.52.0"
features = [
"csv",
"parquet",
"lazy",
"timezones",
"dtype-date",
"dtype-datetime",
"dtype-time",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tempfile]
version = "3"
[dependencies.time]
version = "0.3"
features = ["formatting"]
[dependencies.tokio]
version = "1"
features = [
"rt",
"rt-multi-thread",
"fs",
"io-util",
]
[dependencies.url]
version = "2"
[dependencies.yaml-rust2]
version = "0.11"