You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
991 B
38 lines
991 B
[package]
|
|
name = "videl"
|
|
version = "0.1.0"
|
|
authors = ["Avril <flanchan@cumallover.me>"]
|
|
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"
|
|
log = "0.4.11"
|
|
pretty_env_logger = "0.4.0"
|
|
termprogress = "0.3.4"
|
|
uuid = {version = "0.8.1", features=["v4"]}
|
|
|
|
[build-dependencies]
|
|
rustc_version = "0.2"
|