157 lines
No EOL
2.5 KiB
TOML
157 lines
No EOL
2.5 KiB
TOML
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
|
|
#
|
|
# When uploading crates to the registry Cargo will automatically
|
|
# "normalize" Cargo.toml files for maximal compatibility
|
|
# with all versions of Cargo and also rewrite `path` dependencies
|
|
# to registry (e.g., crates.io) dependencies.
|
|
#
|
|
# If you are reading this file be aware that the original Cargo.toml
|
|
# will likely look very different (and much more reasonable).
|
|
# See Cargo.toml.orig for the original contents.
|
|
|
|
[package]
|
|
edition = "2018"
|
|
name = "dump_syms"
|
|
version = "2.3.4"
|
|
authors = ["Calixte Denizet <cdenizet@mozilla.com>"]
|
|
build = false
|
|
autobins = false
|
|
autoexamples = false
|
|
autotests = false
|
|
autobenches = false
|
|
description = "Dump debug symbols into Breakpad ones"
|
|
homepage = "https://github.com/mozilla/dump_syms"
|
|
readme = "README.md"
|
|
license = "MIT/Apache-2.0"
|
|
repository = "https://github.com/mozilla/dump_syms"
|
|
|
|
[profile.dist]
|
|
lto = "thin"
|
|
inherits = "release"
|
|
|
|
[lib]
|
|
name = "dump_syms"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "dump_syms"
|
|
path = "src/main.rs"
|
|
required-features = ["cli"]
|
|
|
|
[dependencies.anyhow]
|
|
version = "1.0"
|
|
|
|
[dependencies.bitflags]
|
|
version = "2"
|
|
|
|
[dependencies.cab]
|
|
version = "0.6"
|
|
|
|
[dependencies.clap]
|
|
version = "4"
|
|
features = ["cargo"]
|
|
optional = true
|
|
|
|
[dependencies.crossbeam]
|
|
version = "0.8"
|
|
|
|
[dependencies.dirs]
|
|
version = "5"
|
|
|
|
[dependencies.futures]
|
|
version = "0.3"
|
|
optional = true
|
|
|
|
[dependencies.goblin]
|
|
version = "0.8"
|
|
|
|
[dependencies.hashbrown]
|
|
version = "0.14"
|
|
features = ["serde"]
|
|
|
|
[dependencies.log]
|
|
version = "0.4"
|
|
|
|
[dependencies.lzma-rs]
|
|
version = "0.3.0"
|
|
|
|
[dependencies.num_cpus]
|
|
version = "1.13"
|
|
|
|
[dependencies.once_cell]
|
|
version = "1.15"
|
|
|
|
[dependencies.regex]
|
|
version = "1.6"
|
|
|
|
[dependencies.reqwest]
|
|
version = "0.12"
|
|
features = [
|
|
"blocking",
|
|
"rustls-tls",
|
|
]
|
|
optional = true
|
|
default-features = false
|
|
|
|
[dependencies.serde]
|
|
version = "1.0"
|
|
|
|
[dependencies.serde_json]
|
|
version = "1.0"
|
|
|
|
[dependencies.sha2]
|
|
version = "0.10"
|
|
|
|
[dependencies.simplelog]
|
|
version = "0.12"
|
|
features = ["local-offset"]
|
|
optional = true
|
|
|
|
[dependencies.symbolic]
|
|
version = "12"
|
|
features = [
|
|
"demangle",
|
|
"cfi",
|
|
]
|
|
|
|
[dependencies.tokio]
|
|
version = "1.23"
|
|
features = ["rt-multi-thread"]
|
|
optional = true
|
|
|
|
[dependencies.url]
|
|
version = "2.2"
|
|
|
|
[dependencies.uuid]
|
|
version = "1"
|
|
|
|
[dev-dependencies.fxhash]
|
|
version = "0.2"
|
|
|
|
[dev-dependencies.reqwest]
|
|
version = "0.12"
|
|
features = [
|
|
"blocking",
|
|
"rustls-tls",
|
|
]
|
|
default-features = false
|
|
|
|
[dev-dependencies.tempfile]
|
|
version = "3"
|
|
|
|
[features]
|
|
cli = [
|
|
"clap",
|
|
"simplelog",
|
|
]
|
|
default = [
|
|
"cli",
|
|
"http",
|
|
]
|
|
http = [
|
|
"reqwest",
|
|
"futures",
|
|
"tokio",
|
|
]
|
|
|
|
[workspace] |