[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"] [dependencies] tokio = {version = "0.2", features=["full"]} base64 = {version = "0.12", optional = true} cfg-if = "0.1.10" sha2 = "0.9.1"