Results 81 issues of João Marcos

Hello, do you plan on adding documentation to this software? Thanks in advance.

Generics with static dispatch can lead to duplicated functions, and if they are big enough, it will make for a large piece of the final binary. Alternatives are dynamic dispatch...

enhancement

**Is your feature request related to a problem? Please describe.** Our `seq` doesn't implement `-f` option, but it is necessary to be considered completed. **Describe the solution you'd like** Add...

C-enhancement
Hacktoberfest
A-tool

From https://docs.rs/serde_json/1.0.68/serde_json/fn.to_string_pretty.html: ![image](https://user-images.githubusercontent.com/38900226/133647181-853bf68c-c827-4773-bcff-60fe0bbac9cb.png) I assume that if I call ```rust use serde_json::*; to_string_pretty(...); ``` I can `.unwrap()` this result safely, is it right? Or `Value`'s implementation of `Serialize` might decide...

docs

@maciejhirsz thanks for this awesome crate, I think I found an issue, but I'm not sure. I'm creating a file format to specify directory structures, and my definition of a...

# Problem Currently, we don't have control of what extensions should be used in compression or decompression, we rely on automatic extension detection. Using `archive.tar.gz.xz` as an example, you might...

enhancement
high priority

We can remove the `fs::canonicalize` function calls, as they are only being currently used to check if files exist, this type of check should be performed with `fs::metadata` instead. This...

enhancement
high priority

Currently, when compressing, `ouch` always follows symlinks when building an archive, ignoring errors when they occur, meaning there is no way to store a symlink inside of an archive. The...

enhancement

Planned flags: ## `--level LEVEL_NUMBER` From 1 to 10, `ouch` should "translate" that range for each format, considering that some formats use higher numbers than others. ## `--fast` Less intensive...

enhancement
waiting ecosystem

### Version b50987840ea7fd66f55206a6116fd7169eac8aed ### Description When this command is ran: ```sh $ ouch --accessible c /var/cache/pacman/pkg/qt5-base-5.15.2+kde+r262-1-x86_64.pkg.tar.zst output.xz ``` ### Current Behavior Detects partial compression and panics: ``` Partial compression detected....

bug