Skip to content

Commit

Permalink
Use Unicode status indications in README
Browse files Browse the repository at this point in the history
The README as displayed on crates.io does not interpret the GitHub
specific markdown directives as GitHub does, leading to a sub-par
viewing experience there.
Migrate over to just using the proper Unicode graphemes (?), which
should display fine there as well.

Signed-off-by: Daniel Müller <deso@posteo.net>
  • Loading branch information
d-e-s-o committed Nov 1, 2024
1 parent cfd540c commit 403eeca
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,23 +45,23 @@ As alluded to above, the library provides support for a variety of formats. For
symbolization specifically, the following table lays out what features each
format supports and whether **blazesym** can currently use this feature:

| Format | Feature | Supported by format? | Supported by blazesym? |
| ------------- | -------------------------------- | ------------------------ | ------------------------ |
| Breakpad | symbol size | :heavy_check_mark: | :heavy_check_mark: |
| | source code location information | :heavy_check_mark: | :heavy_check_mark: |
| | inlined function information | :heavy_check_mark: | :heavy_check_mark: |
| ELF | symbol size | :heavy_check_mark: | :heavy_check_mark: |
| | source code location information | :heavy_multiplication_x: | :heavy_multiplication_x: |
| | inlined function information | :heavy_multiplication_x: | :heavy_multiplication_x: |
| DWARF | symbol size | :heavy_check_mark: | :heavy_check_mark: |
| | source code location information | :heavy_check_mark: | :heavy_check_mark: |
| | inlined function information | :heavy_check_mark: | :heavy_check_mark: |
| Gsym | symbol size | :heavy_check_mark: | :heavy_check_mark: |
| | source code location information | :heavy_check_mark: | :heavy_check_mark: |
| | inlined function information | :heavy_check_mark: | :heavy_check_mark: |
| Ksym | symbol size | :heavy_multiplication_x: | :heavy_multiplication_x: |
| | source code location information | :heavy_multiplication_x: | :heavy_multiplication_x: |
| | inlined function information | :heavy_multiplication_x: | :heavy_multiplication_x: |
| Format | Feature | Supported by format? | Supported by blazesym? |
| ------------- | -------------------------------- | -------------------- | ---------------------- |
| Breakpad | symbol size | ✔️ | ✔️ |
| | source code location information | ✔️ | ✔️ |
| | inlined function information | ✔️ | ✔️ |
| ELF | symbol size | ✔️ | ✔️ |
| | source code location information | ✖️ | ✖️ |
| | inlined function information | ✖️ | ✖️ |
| DWARF | symbol size | ✔️ | ✔️ |
| | source code location information | ✔️ | ✔️ |
| | inlined function information | ✔️ | ✔️ |
| Gsym | symbol size | ✔️ | ✔️ |
| | source code location information | ✔️ | ✔️ |
| | inlined function information | ✔️ | ✔️ |
| Ksym | symbol size | ✖️ | ✖️ |
| | source code location information | ✖️ | ✖️ |
| | inlined function information | ✖️ | ✖️ |


Here is rough roadmap of currently planned features (in no particular order):
Expand Down

0 comments on commit 403eeca

Please sign in to comment.