João Marcos
João Marcos
Sadly no updates, https://crates.io/crates/lzip is empty still.
After the clap 4 migration, here's the output of `--version`: ```sh $ cargo sweep --version cargo-sweep-sweep 0.6.2 $ cargo-sweep --version cargo-sweep 0.6.2 ```
Note for someone who might solve this in the future, you might want to update this test too: https://github.com/holmgr/cargo-sweep/blob/fd4dc55dd89d480276aace44b1af6adeeab7ed05/tests/integration.rs#L192-L194
`--version` is working, and here's the `--time` wrong usage message: ``` $ cargo sweep -t error: a value is required for '--time ' but none was supplied ``` And the...
I believe this can be closed.
A reasonable explanation is that [`.as_array_mut()`](https://docs.rs/serde_json/latest/serde_json/value/enum.Value.html#method.as_array_mut) has to return `Option`, so `.as_array()` should be consistent with that, more than it needs to be consistent with `.as_str()`. Regardless, I suggest this...
> the ideal solution is really the union of untracked, visible files (so default behavior of fd) plus every files known to git, hidden or not My 2 cents: this...
> This issue is about the tracked starting with . (so hidden). I know what the issue is about. What you want: 1. ✅ tracked. 2. ✅ tracked hidden. (current:...
(Did you close this by accident?) > Consider a repo where you want to see things like: > > * .github > * .editorconfig > * .gitattributes > * .eslintignore...
I started doing this and gave up mid-way, there's simply too many of them. Another suggestion, instead of ```rust /// Returns whether a buffer is an RTF. pub fn is_rtf(buf:...