|
|
|
@ -1,6 +1,6 @@
|
|
|
|
|
[package]
|
|
|
|
|
name = "leanify-many"
|
|
|
|
|
version = "1.1.0"
|
|
|
|
|
version = "1.1.1"
|
|
|
|
|
description = "spawn leanify subprocesses"
|
|
|
|
|
authors = ["Avril <flanchan@cumallover.me>"]
|
|
|
|
|
edition = "2018"
|
|
|
|
@ -10,14 +10,36 @@ homepage = "https://git.flanchan.moe/flanchan/leanify-many"
|
|
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
default = ["splash", "progress", "colour", "collect_err"]
|
|
|
|
|
|
|
|
|
|
# Enable progress bar
|
|
|
|
|
progress = ["termprogress", "pin-project"]
|
|
|
|
|
|
|
|
|
|
# Enable threaded scheduler
|
|
|
|
|
#
|
|
|
|
|
# Note: This is probably not desireable, since you'll want processors to be used by the child processes instead of the spawner here
|
|
|
|
|
threads = ["tokio/rt-threaded"]
|
|
|
|
|
|
|
|
|
|
# Show program info when passing --help
|
|
|
|
|
splash = []
|
|
|
|
|
|
|
|
|
|
# Enable output colouring
|
|
|
|
|
colour = ["recolored"]
|
|
|
|
|
# For americans
|
|
|
|
|
color = ["colour"]
|
|
|
|
|
|
|
|
|
|
# Check arguments passed to children with `--passthough` by default
|
|
|
|
|
checked_pass = []
|
|
|
|
|
|
|
|
|
|
# Collect `stderr` output instead of inheriting from parent `stderr`
|
|
|
|
|
#
|
|
|
|
|
# Note: Disabling this can cause weird deadlock bugs sometimes
|
|
|
|
|
collect_err = []
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|