timefs 0.1.0

Mount a Git repository as a read-only filesystem.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.75"
name = "timefs"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Mount a Git repository as a read-only filesystem."
homepage = "https://github.com/itsbryanman/timefs"
documentation = "https://docs.rs/timefs"
readme = "README.md"
keywords = [
    "git",
    "fuse",
    "filesystem",
    "history",
]
categories = [
    "filesystem",
    "development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/itsbryanman/timefs"

[lib]
name = "timefs"
path = "src/lib.rs"

[[bin]]
name = "timefs"
path = "src/main.rs"

[[bin]]
name = "timefs-fuzz-resolvers"
path = "src/bin/timefs-fuzz-resolvers.rs"

[[test]]
name = "differential"
path = "tests/differential.rs"

[[test]]
name = "history"
path = "tests/history.rs"

[[test]]
name = "randomized_walk"
path = "tests/randomized_walk.rs"

[[test]]
name = "release"
path = "tests/release.rs"

[[test]]
name = "task3_mount"
path = "tests/task3_mount.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.clap]
version = "4.5"
features = ["derive"]

[dependencies.ctrlc]
version = "3.4"

[dependencies.fuser]
version = "0.15"
features = ["abi-7-31"]

[dependencies.gix]
version = "0.66"
features = [
    "parallel",
    "revision",
]
default-features = false

[dependencies.libc]
version = "0.2"

[dependencies.lru]
version = "0.12"

[dependencies.thiserror]
version = "2.0"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"
features = [
    "fmt",
    "std",
]