-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
31 lines (28 loc) · 870 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
authors = ["Jeff Muizelaar <[email protected]>", "Markus Stange <[email protected]>"]
categories = ["development-tools::debugging"]
description = "Symbolicate addresses from PDBs, like addr2line."
documentation = "https://docs.rs/pdb-addr2line"
edition = "2018"
homepage = "https://github.com/mstange/pdb-addr2line"
keywords = ["PDB", "debug", "addr2line", "symbolicate", "windows"]
license = "MIT/Apache-2.0"
name = "pdb-addr2line"
readme = "Readme.md"
repository = "https://github.com/mstange/pdb-addr2line"
version = "0.11.1"
exclude = ["/.github", "/tests"]
[dependencies]
bitflags = "2.0"
maybe-owned = "0.3.4"
pdb = { package = "pdb2", version = "0.9" }
range-collections = "0.4.5"
thiserror = "1.0"
elsa = "1.9.0"
[dev-dependencies]
clap = "4.4.6"
getopts = "0.2.21"
memmap2 = "0.9.0"
msvc-demangler = "0.9.0"
[[example]]
name = "pdb-addr2line"