You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I suspect many oxipng lib users do not realize they are including many unneeded dependencies like clap because oxipng enables "binary" feature by default. Is there a way to make it optional, or at least place a this at the top of the readme somewhere?
oxipng = { version = "8.0", features = ["parallel", "zopfli", "filetime"], default-features = false }
The text was updated successfully, but these errors were encountered:
Unfortunately disabling a default feature isn't currently supported by Cargo, you would have to do it with the method you specified. Adding this to the readme probably does make sense.
I suspect many oxipng lib users do not realize they are including many unneeded dependencies like clap because oxipng enables "binary" feature by default. Is there a way to make it optional, or at least place a this at the top of the readme somewhere?
The text was updated successfully, but these errors were encountered: