diff --git a/Cargo.lock b/Cargo.lock index 3dbd5df0..31f3a5c0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -658,6 +658,12 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" +[[package]] +name = "foldhash" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" + [[package]] name = "form_urlencoded" version = "1.2.2" @@ -873,7 +879,7 @@ version = "0.15.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" dependencies = [ - "foldhash", + "foldhash 0.1.5", ] [[package]] @@ -881,6 +887,9 @@ name = "hashbrown" version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" +dependencies = [ + "foldhash 0.2.0", +] [[package]] name = "hashlink" @@ -1537,13 +1546,13 @@ checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33" [[package]] name = "object" -version = "0.37.3" +version = "0.38.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe" +checksum = "b8b28f24bd43920cd8e0bc4f9c6553e8b93221c512cb9a1014987fc89d36f830" dependencies = [ "crc32fast", "flate2", - "hashbrown 0.15.5", + "hashbrown 0.16.0", "indexmap", "memchr", "ruzstd", diff --git a/samply-object/Cargo.toml b/samply-object/Cargo.toml index 9582aec3..2dd27def 100644 --- a/samply-object/Cargo.toml +++ b/samply-object/Cargo.toml @@ -15,7 +15,7 @@ version = "0.8.0" [dependencies.object] default-features = false features = ["read_core"] -version = "0.37" +version = "0.38" [dependencies.uuid] default-features = false diff --git a/samply-symbols/Cargo.toml b/samply-symbols/Cargo.toml index 63192896..fc1893d6 100644 --- a/samply-symbols/Cargo.toml +++ b/samply-symbols/Cargo.toml @@ -28,7 +28,7 @@ version = "0.32" [dependencies.object] default-features = false features = ["std", "read_core", "archive", "elf", "macho", "pe", "unaligned", "compression"] -version = "0.37" +version = "0.38" [dependencies] #pdb-addr2line = { path = "../../pdb-addr2line" } diff --git a/samply/Cargo.toml b/samply/Cargo.toml index bd3f16c5..30c744d0 100644 --- a/samply/Cargo.toml +++ b/samply/Cargo.toml @@ -111,4 +111,4 @@ features = ["Win32", [dependencies.object] default-features = false features = ["std", "read_core", "elf", "pe", "unaligned", "write"] -version = "0.37" +version = "0.38"