Skip to content

Commit

Permalink
Bump the minor-changes group with 6 updates
Browse files Browse the repository at this point in the history
Bumps the minor-changes group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [is-terminal](https://github.com/sunfishcode/is-terminal) | `0.4.9` | `0.4.10` |
| [os_pipe](https://github.com/oconnor663/os_pipe.rs) | `1.1.4` | `1.1.5` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.109` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.77` | `1.0.78` |
| [clap](https://github.com/clap-rs/clap) | `4.4.11` | `4.4.12` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` |


Updates `is-terminal` from 0.4.9 to 0.4.10
- [Commits](sunfishcode/is-terminal@v0.4.9...v0.4.10)

Updates `os_pipe` from 1.1.4 to 1.1.5
- [Commits](oconnor663/os_pipe.rs@1.1.4...1.1.5)

Updates `serde_json` from 1.0.108 to 1.0.109
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.108...v1.0.109)

Updates `anyhow` from 1.0.77 to 1.0.78
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.77...1.0.78)

Updates `clap` from 4.4.11 to 4.4.12
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@v4.4.11...v4.4.12)

Updates `tempfile` from 3.8.1 to 3.9.0
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.8.1...v3.9.0)

---
updated-dependencies:
- dependency-name: is-terminal
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-changes
- dependency-name: os_pipe
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-changes
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-changes
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-changes
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-changes
- dependency-name: tempfile
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-changes
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Jan 1, 2024
1 parent c0d8967 commit 5c18db5
Show file tree
Hide file tree
Showing 4 changed files with 113 additions and 47 deletions.
142 changes: 104 additions & 38 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ handlebars = { version = "4.5.0", optional = true }
portable-pty = { version = "0.8.0", optional = true }

# Private dependencies (not exposed in the public API).
is-terminal = { version = "0.4.9", optional = true }
is-terminal = { version = "0.4.10", optional = true }
bytecount = "0.6.7"
os_pipe = "1.0.0"
os_pipe = "1.1.5"
serde = { version = "1.0", optional = true, features = ["derive"] }
serde_json = { version = "1.0", optional = true }
tracing = { version = "0.1.40", optional = true }
Expand All @@ -34,7 +34,7 @@ termcolor = "1.4.0"
unicode-width = "0.1.11"

[dev-dependencies]
anyhow = "1.0.77"
anyhow = "1.0.78"
assert_matches = "1.5.0"
doc-comment = "0.3.3"
test-casing = "0.1.2"
Expand Down
8 changes: 4 additions & 4 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ name = "term-transcript"
path = "src/main.rs"

[dependencies]
anyhow = "1.0.77"
clap = { version = "4.4.11", features = ["derive", "env", "wrap_help"] }
anyhow = "1.0.78"
clap = { version = "4.4.12", features = ["derive", "env", "wrap_help"] }
handlebars = "4.5.0"
humantime = "2.1.0"
is-terminal = "0.4.9"
is-terminal = "0.4.10"
serde_json = "1.0"
termcolor = "1.4.0"
toml = "0.8.2"
Expand All @@ -28,7 +28,7 @@ tracing-subscriber = { version = "0.3.18", features = ["env-filter"], optional =
term-transcript = { version = "0.3.0", path = ".." }

[dev-dependencies]
tempfile = "3.8.1"
tempfile = "3.9.0"

[features]
default = []
Expand Down
4 changes: 2 additions & 2 deletions e2e-tests/rainbow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ name = "rainbow-repl"
path = "src/bin/repl.rs"

[dependencies]
anyhow = "1.0.77"
anyhow = "1.0.78"
termcolor = "1.4.0"

[dependencies.term-transcript]
Expand All @@ -25,7 +25,7 @@ features = ["tracing"]
[dev-dependencies]
handlebars = "4.5.0"
pretty_assertions = "1.0.0"
tempfile = "3.8.1"
tempfile = "3.9.0"
test-casing = "0.1.2"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
Expand Down

0 comments on commit 5c18db5

Please sign in to comment.