Removed `byte-strings` as a default feature: It causes a slight slowdown, and most people won"t need it"s functionality. `ignore-invalid-arguments` is thus prefered as default.
# Operate on raw input byte arrays instead of strings; so non-utf8 characters will be preserved in both input and output
# Operate on raw input byte arrays instead of strings; so non-utf8 characters will be preserved in both input and output
# NOTE: May cause collecting from stdin to be *slightly* slower when enabled; so only enable if you intend to be operating on non-utf8 strings (which is usually unlikely)
# NOTE: `ignore-invalid-args` will do nothing if this is enabled.
# NOTE: `ignore-invalid-args` will do nothing if this is enabled.
byte-strings=[]
byte-strings=[]
@ -34,6 +35,9 @@ opt-level = 3
lto="fat"
lto="fat"
codegen-units=1
codegen-units=1
strip=true
strip=true
#panic="abort" # XXX: This doesn't remove panic handler, for some reason...