]> git.proxmox.com Git - rustc.git/blame - vendor/backtrace/Cargo.toml
New upstream version 1.69.0+dfsg1
[rustc.git] / vendor / backtrace / Cargo.toml
CommitLineData
064997fb
FG
1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies.
7#
8# If you are reading this file be aware that the original Cargo.toml
9# will likely look very different (and much more reasonable).
10# See Cargo.toml.orig for the original contents.
11
12[package]
13edition = "2018"
14name = "backtrace"
9ffffee4 15version = "0.3.67"
064997fb
FG
16authors = ["The Rust Project Developers"]
17build = "build.rs"
18autoexamples = true
19autotests = true
20description = """
21A library to acquire a stack trace (backtrace) at runtime in a Rust program.
22"""
23homepage = "https://github.com/rust-lang/backtrace-rs"
24documentation = "https://docs.rs/backtrace"
25readme = "README.md"
9ffffee4 26license = "MIT OR Apache-2.0"
064997fb
FG
27repository = "https://github.com/rust-lang/backtrace-rs"
28
29[[example]]
30name = "backtrace"
31required-features = ["std"]
32
33[[example]]
34name = "raw"
35required-features = ["std"]
36
37[[test]]
38name = "skip_inner_frames"
39required-features = ["std"]
40
41[[test]]
42name = "long_fn_name"
43required-features = ["std"]
44
45[[test]]
46name = "smoke"
47required-features = ["std"]
48edition = "2018"
49
50[[test]]
51name = "accuracy"
52required-features = ["std"]
53edition = "2018"
54
55[[test]]
56name = "concurrent-panics"
57harness = false
58required-features = ["std"]
59
9ffffee4
FG
60[[test]]
61name = "current-exe-mismatch"
62harness = false
63required-features = ["std"]
64
064997fb 65[dependencies.addr2line]
9ffffee4 66version = "0.19.0"
064997fb
FG
67default-features = false
68
69[dependencies.cfg-if]
70version = "1.0"
71
72[dependencies.cpp_demangle]
9ffffee4
FG
73version = "0.4.0"
74features = ["alloc"]
064997fb
FG
75optional = true
76default-features = false
77
78[dependencies.libc]
79version = "0.2.94"
80default-features = false
81
82[dependencies.miniz_oxide]
9ffffee4 83version = "0.6.0"
064997fb
FG
84default-features = false
85
86[dependencies.object]
9ffffee4 87version = "0.30.0"
064997fb
FG
88features = [
89 "read_core",
90 "elf",
91 "macho",
92 "pe",
93 "unaligned",
94 "archive",
95]
96default-features = false
97
98[dependencies.rustc-demangle]
99version = "0.1.4"
100
101[dependencies.rustc-serialize]
102version = "0.3"
103optional = true
104
105[dependencies.serde]
106version = "1.0"
107features = ["derive"]
108optional = true
109
110[dev-dependencies.libloading]
111version = "0.7"
112
113[build-dependencies.cc]
114version = "1.0.67"
115
116[features]
117coresymbolication = []
118dbghelp = []
119default = ["std"]
120dladdr = []
121gimli-symbolize = []
122kernel32 = []
123libbacktrace = []
124libunwind = []
125serialize-rustc = ["rustc-serialize"]
126serialize-serde = ["serde"]
127std = []
128unix-backtrace = []
129verify-winapi = [
130 "winapi/dbghelp",
131 "winapi/handleapi",
132 "winapi/libloaderapi",
133 "winapi/memoryapi",
134 "winapi/minwindef",
135 "winapi/processthreadsapi",
136 "winapi/synchapi",
137 "winapi/tlhelp32",
138 "winapi/winbase",
139 "winapi/winnt",
140]
141
142[target."cfg(windows)".dependencies.winapi]
143version = "0.3.9"
144optional = true