@ -1,13 +1,13 @@
[ package ]
[ package ]
name = "reverse"
name = "reverse"
version = "0. 2.1 "
version = "0. 3.0 "
authors = [ "Avril <flanchan@cumallover.me>" ]
authors = [ "Avril <flanchan@cumallover.me>" ]
edition = "2018"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[ features ]
[ features ]
default = [ "output-lines" , "buffer-output" , "ignore-output-errors" ]
default = [ "output-lines" , "buffer-output" , "ignore-output-errors" , "ignore-invalid-args" ]
# Output as lines instead of `["2", "1", "0"]`
# Output as lines instead of `["2", "1", "0"]`
output-lines = [ ]
output-lines = [ ]
@ -22,10 +22,14 @@ buffer-output = []
# Disable this if you are writing to a faulty device or expect some output operations to stdout to fail.
# Disable this if you are writing to a faulty device or expect some output operations to stdout to fail.
ignore-output-errors = [ ]
ignore-output-errors = [ ]
# Ignore invalid arguments instead of removing invalid UTF8 characters if they exist in the argument
ignore-invalid-args = [ ]
[ profile . release ]
[ profile . release ]
opt-level = 3
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...
[ dependencies ]
[ dependencies ]