[package]
name = "timefs"
version = "0.1.0"
edition = "2021"
rust-version = "1.75"
description = "Mount a Git repository as a read-only filesystem."
license = "MIT OR Apache-2.0"
repository = "https://github.com/itsbryanman/timefs"
homepage = "https://github.com/itsbryanman/timefs"
documentation = "https://docs.rs/timefs"
readme = "README.md"
keywords = ["git", "fuse", "filesystem", "history"]
categories = ["filesystem", "development-tools"]
[dependencies]
anyhow = "1.0"
clap = { version = "4.5", features = ["derive"] }
ctrlc = "3.4"
fuser = { version = "0.15", features = ["abi-7-31"] }
gix = { version = "0.66", default-features = false, features = ["parallel", "revision"] }
libc = "0.2"
lru = "0.12"
thiserror = "2.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "std"] }