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.
30 lines
783 B
30 lines
783 B
[package]
|
|
name = "enumerate-ordered"
|
|
description = "Order files by their timestamps"
|
|
authors=["Avril (Flanchan) <avril@flanchan.moe>"]
|
|
version = "1.1.0"
|
|
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.2", default-features = false }
|
|
futures = "0.3.25"
|
|
jemallocator = "0.5.0"
|
|
lazy_static = "1.4.0"
|
|
log = "0.4.17"
|
|
num_cpus = "1.14.0"
|
|
pretty_env_logger = "0.4.0"
|
|
tokio = { version = "1.22.0", features = ["full"] }
|
|
tokio-stream = { version = "0.1.11", features = ["sync", "fs", "io-util", "net", "signal", "tokio-util"] }
|