Skip to content

Commit

Permalink
Bump the minor-changes group across 1 directory with 8 updates (#144)
Browse files Browse the repository at this point in the history
Bumps the minor-changes group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.82` | `1.0.86` |
| [bytecount](https://github.com/llogiq/bytecount) | `0.6.7` | `0.6.8` |
| [clap](https://github.com/clap-rs/clap) | `4.5.4` | `4.5.8` |
| [os_pipe](https://github.com/oconnor663/os_pipe.rs) | `1.1.5` | `1.2.0` |
| [serde](https://github.com/serde-rs/serde) | `1.0.198` | `1.0.203` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.116` | `1.0.120` |
| [toml](https://github.com/toml-rs/toml) | `0.8.12` | `0.8.14` |
| [unicode-width](https://github.com/unicode-rs/unicode-width) | `0.1.11` | `0.1.13` |

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Alex Ostrovski <[email protected]>
  • Loading branch information
dependabot[bot] and slowli authored Jul 6, 2024
1 parent 365e44d commit deea7d8
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 40 deletions.
2 changes: 2 additions & 0 deletions .clippy.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Minimum supported Rust version. Should be consistent with CI and mentions
# in crate READMEs.
msrv = "1.72"

doc-valid-idents = ["PowerShell", ".."]
62 changes: 31 additions & 31 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ license = "MIT OR Apache-2.0"
repository = "https://github.com/slowli/term-transcript"

[workspace.dependencies]
anyhow = "1.0.82"
anyhow = "1.0.86"
assert_matches = "1.5.0"
bytecount = "0.6.7"
clap = "4.5.4"
bytecount = "0.6.8"
clap = "4.5.8"
doc-comment = "0.3.3"
handlebars = "5.1.2"
humantime = "2.1.0"
is-terminal = "0.4.12"
os_pipe = "1.1.5"
os_pipe = "1.2.0"
portable-pty = "0.8.0"
pretty_assertions = "1.0.0"
quick-xml = "0.31.0"
Expand All @@ -28,11 +28,11 @@ serde_json = "1.0"
tempfile = "3.10.1"
termcolor = "1.4.1"
test-casing = "0.1.3"
toml = "0.8.12"
toml = "0.8.14"
tracing = "0.1.40"
tracing-capture = "0.1.0"
tracing-subscriber = "0.3.18"
unicode-width = "0.1.11"
unicode-width = "0.1.13"
version-sync = "0.9.2"

# Profile for workspace executables
Expand Down
1 change: 0 additions & 1 deletion lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,6 @@ impl Transcript {
/// # #[cfg(unix)] fn main() { test_wrapper().unwrap() }
/// # #[cfg(not(unix))] fn main() { }
/// ```
#[allow(clippy::doc_markdown)] // false positive on "PowerShell"
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct ExitStatus(pub i32);

Expand Down
2 changes: 0 additions & 2 deletions lib/src/shell/standard.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ impl ShellOptions<StdShell> {
}

/// Creates options for PowerShell 6+ (the one with the `pwsh` executable).
#[allow(clippy::doc_markdown)] // false positive
pub fn pwsh() -> Self {
let mut command = Command::new("pwsh");
command.arg("-NoLogo").arg("-NoExit");
Expand Down Expand Up @@ -105,7 +104,6 @@ impl ShellOptions<StdShell> {
/// is **not** checked.
///
/// [`env!("CARGO_BIN_EXE_<name>")`]: https://doc.rust-lang.org/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-crates
#[allow(clippy::doc_markdown)] // false positive
#[must_use]
pub fn with_alias(self, name: &str, path_to_bin: &str) -> Self {
let alias_command = match self.command.shell_type {
Expand Down

0 comments on commit deea7d8

Please sign in to comment.