Skip to content

Commit 4263ffe

Browse files
committed
chore: Update dependencies
1 parent b092bc3 commit 4263ffe

5 files changed

Lines changed: 124 additions & 42 deletions

File tree

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)