[package]
edition = "2024"
rust-version = "1.85"
name = "face-core"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core grouping, clustering, and paging primitives for the face CLI."
homepage = "https://github.com/oops-rs/face"
readme = false
license = "MIT"
repository = "https://github.com/oops-rs/face"
[lib]
name = "face_core"
path = "src/lib.rs"
[[test]]
name = "cluster_id"
path = "tests/cluster_id.rs"
[[test]]
name = "cluster_tree_bands"
path = "tests/cluster_tree_bands.rs"
[[test]]
name = "cluster_tree_exact"
path = "tests/cluster_tree_exact.rs"
[[test]]
name = "cluster_tree_natural"
path = "tests/cluster_tree_natural.rs"
[[test]]
name = "cluster_tree_nesting"
path = "tests/cluster_tree_nesting.rs"
[[test]]
name = "cluster_tree_prefix"
path = "tests/cluster_tree_prefix.rs"
[[test]]
name = "cluster_tree_quantiles"
path = "tests/cluster_tree_quantiles.rs"
[[test]]
name = "cluster_tree_similar"
path = "tests/cluster_tree_similar.rs"
[[test]]
name = "cluster_tree_top"
path = "tests/cluster_tree_top.rs"
[[test]]
name = "detect_preset"
path = "tests/detect_preset.rs"
[[test]]
name = "detect_score"
path = "tests/detect_score.rs"
[[test]]
name = "envelope"
path = "tests/envelope.rs"
[[test]]
name = "flat_nested"
path = "tests/flat_nested.rs"
[[test]]
name = "format_delimited"
path = "tests/format_delimited.rs"
[[test]]
name = "format_human"
path = "tests/format_human.rs"
[[test]]
name = "format_json"
path = "tests/format_json.rs"
[[test]]
name = "format_markdown"
path = "tests/format_markdown.rs"
[[test]]
name = "input_parse"
path = "tests/input_parse.rs"
[[test]]
name = "input_sniff"
path = "tests/input_sniff.rs"
[[test]]
name = "invert"
path = "tests/invert.rs"
[[test]]
name = "items_detection"
path = "tests/items_detection.rs"
[[test]]
name = "path"
path = "tests/path.rs"
[[test]]
name = "record_from_items"
path = "tests/record_from_items.rs"
[dependencies.csv]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"