Skip to content

Commit

Permalink
deps: update blazesym submodule to v0.2.0-rc.0
Browse files Browse the repository at this point in the history
Update the blazesym submodule to version 0.2.0-rc.0 (well, actually to
0.1.0-rc.0 of blazesym-c, but they are effectively the same).

Signed-off-by: Daniel Müller <[email protected]>
  • Loading branch information
d-e-s-o authored and anakryiko committed Jun 11, 2024
1 parent 2dffae1 commit ceb0dc3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion blazesym
Submodule blazesym updated 66 files
+1 −1 .github/workflows/publish-capi.yml
+1 −1 .github/workflows/test.yml
+1 −0 .gitignore
+13 −0 CHANGELOG.md
+5 −4 Cargo.toml
+11 −0 README-devel.md
+2 −2 README.md
+11 −2 benches/normalize.rs
+103 −17 build.rs
+13 −3 capi/CHANGELOG.md
+4 −2 capi/Cargo.toml
+9 −3 capi/benches/normalize.rs
+158 −40 capi/include/blazesym.h
+6 −2 capi/src/inspect.rs
+3 −67 capi/src/lib.rs
+191 −62 capi/src/normalize.rs
+344 −48 capi/src/symbolize.rs
+136 −0 capi/src/util.rs
+8 −2 cli/CHANGELOG.md
+2 −2 cli/Cargo.toml
+2 −2 cli/README.md
+14 −3 cli/src/args.rs
+12 −2 cli/src/main.rs
+9 −0 data/test-so.map
+11 −0 data/test-stable-addrs.c
+3 −0 data/test.rs
+2 −2 examples/gsym-in-apk/Cargo.toml
+1 −1 examples/sym-debuginfod/Cargo.toml
+3 −3 src/breakpad/parser.rs
+4 −4 src/breakpad/types.rs
+303 −0 src/dwarf/debug_link.rs
+2 −0 src/dwarf/mod.rs
+121 −12 src/dwarf/resolver.rs
+2 −2 src/dwarf/units.rs
+7 −0 src/elf/mod.rs
+145 −32 src/elf/parser.rs
+46 −32 src/elf/resolver.rs
+1 −0 src/elf/types.rs
+9 −5 src/error.rs
+49 −30 src/file_cache.rs
+7 −12 src/gsym/inline.rs
+8 −8 src/gsym/linetab.rs
+8 −8 src/gsym/parser.rs
+7 −2 src/gsym/resolver.rs
+4 −0 src/insert_map.rs
+29 −2 src/inspect/inspector.rs
+66 −3 src/inspect/source.rs
+1 −1 src/kernel.rs
+6 −1 src/ksym.rs
+3 −0 src/lib.rs
+3 −0 src/maps.rs
+3 −3 src/mmap.rs
+1 −1 src/normalize/meta.rs
+50 −7 src/normalize/mod.rs
+117 −81 src/normalize/normalizer.rs
+27 −12 src/normalize/user.rs
+0 −7 src/resolver.rs
+42 −11 src/symbolize/mod.rs
+2 −2 src/symbolize/perf_map.rs
+6 −0 src/symbolize/source.rs
+91 −59 src/symbolize/symbolizer.rs
+57 −0 src/test_helper.rs
+101 −33 src/util.rs
+4 −4 src/zip.rs
+11 −2 tests/allocs.rs
+180 −31 tests/blazesym.rs
6 changes: 3 additions & 3 deletions examples/rust/Cargo.lock

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

0 comments on commit ceb0dc3

Please sign in to comment.