summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2021-07-25 12:18:29 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2021-07-25 12:18:29 +0200
commitf617f46bfc455c9f1bad807b5dee3726543aff21 (patch)
tree70e6853eb4fd1d20fa234d375cac2c74e9aa5b9c /Cargo.toml
parentd2d84c13a706af98ab1ba9d2cf7ae8c6b47454b6 (diff)
downloadrebel-f617f46bfc455c9f1bad807b5dee3726543aff21.tar
rebel-f617f46bfc455c9f1bad807b5dee3726543aff21.zip
build: set opt-level = 2 for dependencies
tar-rs is unusably slow without optimization.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml3
1 files changed, 3 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 980ad4b..f77af31 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -23,3 +23,6 @@ tar = "0.4.32"
tee_readwrite = "0.1.0"
users = "0.11.0"
walkdir = "2"
+
+[profile.dev.package."*"]
+opt-level = 2