@ -1,13 +1,13 @@
[ package ]
name = "reverse"
version = "0.2. 0 "
version = "0.2. 1 "
authors = [ "Avril <flanchan@cumallover.me>" ]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[ features ]
default = [ "output-lines" ]
default = [ "output-lines" , "buffer-output" , "ignore-output-errors" ]
# Output as lines instead of `["2", "1", "0"]`
output-lines = [ ]
@ -18,7 +18,8 @@ output-quoted = []
# Buffer output to conserve syscalls, useful for very large inputs (can cause higher memory usage, but generally speeds output up considerably)
buffer-output = [ ]
# Do not attempt to handle output errors
# Do not attempt to handle output errors.
# Disable this if you are writing to a faulty device or expect some output operations to stdout to fail.
ignore-output-errors = [ ]
[ profile . release ]