[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) instead of high (unimplemented) # # Currently does nothing as this is the default and only implemented one. 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" log = "0.4.11" pretty_env_logger = "0.4.0" [build-dependencies] rustc_version = "0.2"