facett-git 0.1.12

facett — git repository facet: browse branches, commit log, the file tree, and syntax-coloured source, all clickable. gix-backed (optional feature), egui-rendered. A consumer (nornir) drops it in to show git for any repo.
Documentation
[package]
name = "facett-git"
description = "facett — git repository facet: browse branches, commit log, the file tree, and syntax-coloured source, all clickable. gix-backed (optional feature), egui-rendered. A consumer (nornir) drops it in to show git for any repo."
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true

[features]
# `gix` turns on the real repository reader (open a repo on disk → branches /
# commit log / tree / blob). OFF by default so the facet + the pure syntax
# highlighter + the Facet skeleton compile and test with NO heavy git dependency;
# a consumer that wants live git data opts in.
default = []
gix = ["dep:gix"]
# L4 functional-status emitter passthrough (see facett-core).
testmatrix = ["facett-core/testmatrix"]

[dependencies]
facett-core = { path = "../facett-core", version = "0.1" }
egui = { workspace = true }
serde_json = { workspace = true }
serde = { version = "1", features = ["derive"] }
# Real git reader, only with the `gix` feature. Version matches the sibling nornir
# (0.84). Light feature set — read-only object/ref access, no network.
gix = { version = "0.84", optional = true, default-features = false, features = ["max-performance-safe", "revision", "sha1"] }

[dev-dependencies]
egui_kittest = { version = "0.34", features = ["snapshot"] }