[package] name = "videl" version = "0.1.0" authors = ["Avril "] edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] default = ["threads"] # Enable working on files in parallel threads = ["tokio/rt-threaded"] # Use base64 encoding of pathnames instead of SHA256. This can increase speed of database rebuilding, but can also cause files with large pathnames to fail. fast-pathnames = ["base64"] # Use low-precision argument dedup (64-bit hash) instead of high (256-bit hash) low-prec-arg-dedup = [] [dependencies] tokio = {version = "0.2", features=["full"]} base64 = {version = "0.12", optional = true} cfg-if = "0.1.10" sha2 = "0.9.1" chrono = "0.4.13" color-eyre = "0.5.1" lazy_static = "1.4.0" futures = "0.3.6" smallmap = "^1.1.6" termprogress = "0.3.4" uuid = {version = "0.8.1", features=["v4"]} lazy_format = "1.8.3" recolored = "1.9.3" [build-dependencies] rustc_version = "0.2"