mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-12 18:26:39 +02:00
8 lines
257 B
Diff
8 lines
257 B
Diff
Build env_logger without unnecessary features to reduce the binary size by
|
|
a factor of two.
|
|
|
|
--- a/Cargo.toml
|
|
+++ b/Cargo.toml
|
|
@@ -18,1 +18,1 @@
|
|
-env_logger = "0.11.6"
|
|
+env_logger = { version = "0.11.6", default-features = false, features = ["humantime"] }
|