[package] name = "dirx" version = "0.1.0" authors = ["Andrea Corbellini "] edition = "2021" license = "BSD-3-Clause" description = "Creates an in-memory index of all the files in a directory tree, and allows efficient scanning of only those files that have been modified since the index got created" repository = "https://github.com/andreacorbellini/rust-dirx" keywords = ["filesystem", "directory", "indexing", "recursive"] categories = ["filesystem"] [dependencies] indexmap = { version = "2.0" } nix = { version = "0.26", features = ["dir", "fs"], default-features = false } [dev-dependencies] indoc = { version = "2.0" } pretty_assertions = { version = "1.3" } tempfile = { version = "3.6" }