|
|
|
[package]
|
|
|
|
name = "enumerate-ordered"
|
|
|
|
description = "Order files by their timestamps"
|
|
|
|
authors=["Avril (Flanchan) <avril@flanchan.moe>"]
|
|
|
|
version = "1.1.1"
|
|
|
|
edition = "2021"
|
|
|
|
license = "gpl3.0-or-later"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
opt-level = 3
|
|
|
|
lto = "fat"
|
|
|
|
codegen-units = 1
|
|
|
|
strip = true
|
|
|
|
|
|
|
|
[profile.prof]
|
|
|
|
inherits="release"
|
|
|
|
strip = false
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
color-eyre = { version = "0.6.3", default-features = false }
|
|
|
|
futures = "0.3.31"
|
|
|
|
jemallocator = "0.5.4"
|
|
|
|
lazy_static = "1.5.0"
|
|
|
|
log = "0.4.22"
|
|
|
|
num_cpus = "1.16.0"
|
|
|
|
pretty_env_logger = "0.4.0"
|
|
|
|
tokio = { version = "1.41.1", features = ["full"] }
|
|
|
|
tokio-stream = { version = "0.1.16", features = ["sync", "fs", "io-util", "net", "signal", "tokio-util"] }
|