Skip to content

Commit ed17fa2

Browse files
authored
Merge pull request #97 from epage/update
chore: Update dependencies
2 parents b092bc3 + 70a28e5 commit ed17fa2

6 files changed

Lines changed: 127 additions & 43 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,9 @@ jobs:
111111
components: clippy
112112
- uses: Swatinem/rust-cache@v2
113113
- name: Install SARIF tools
114-
run: cargo install clippy-sarif sarif-fmt
114+
run: cargo install clippy-sarif --version 0.3.4 --locked # Held back due to msrv
115+
- name: Install SARIF tools
116+
run: cargo install sarif-fmt --version 0.3.4 --locked # Held back due to msrv
115117
- name: Check
116118
run: >
117119
cargo clippy --workspace --all-targets --message-format=json -- -D warnings --allow deprecated

Cargo.lock

Lines changed: 113 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ nightly = []
4343
color = ["dep:termcolor", "dep:concolor"]
4444

4545
[dependencies]
46-
termcolor = { version = "1.0.4", optional = true }
47-
concolor = { version = "0.0.11", features = ["auto"], optional = true }
48-
uuid = { version = "0.8.0", features = ["v4"], default-features = false }
49-
serde_derive = "1.0.79"
50-
toml = "0.5.0"
51-
serde = "1.0.79"
52-
os_info = "2.0.6"
53-
backtrace = "0.3.9"
46+
termcolor = { version = "1.2.0", optional = true }
47+
concolor = { version = "0.0.12", features = ["auto"], optional = true }
48+
uuid = { version = "1.3.0", features = ["v4"], default-features = false }
49+
serde_derive = "1.0.152"
50+
toml = "0.7.2"
51+
serde = "1.0.152"
52+
os_info = "3.6.0"
53+
backtrace = "0.3.67"

src/report.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ impl Report {
124124

125125
/// Write a file to disk.
126126
pub fn persist(&self) -> Result<PathBuf, Box<dyn Error + 'static>> {
127-
let uuid = Uuid::new_v4().to_hyphenated().to_string();
127+
let uuid = Uuid::new_v4().hyphenated().to_string();
128128
let tmp_dir = env::temp_dir();
129129
let file_name = format!("report-{}.toml", &uuid);
130130
let file_path = Path::new(&tmp_dir).join(file_name);

tests/custom-panic/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ release = false
1111
human-panic = { path = "../.." }
1212

1313
[dev-dependencies]
14-
snapbox = { version = "0.4.4", features = ["cmd"] }
14+
snapbox = { version = "0.4.7", features = ["cmd"] }

tests/single-panic/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ release = false
1111
human-panic = { path = "../.." }
1212

1313
[dev-dependencies]
14-
snapbox = { version = "0.4.4", features = ["cmd"] }
14+
snapbox = { version = "0.4.7", features = ["cmd"] }

0 commit comments

Comments
 (0)