wholesym 0.4.1

A complete solution for fetching symbol files and resolving code addresses to symbols and debuginfo.
Documentation
[package]
name = "wholesym"
version = "0.4.1"
authors = ["Markus Stange <mstange.moz@gmail.com>"]
edition = "2021"
rust-version = "1.61"
description = "A complete solution for fetching symbol files and resolving code addresses to symbols and debuginfo."
readme = "README.md"
homepage = "https://github.com/mstange/samply/tree/main/wholesym"
repository = "https://github.com/mstange/samply"
license = "MIT OR Apache-2.0"
keywords = ["symbols", "profiling", "addr2line", "debuginfo"]

[features]
default = []
# Enable the JSON API interface.
api = ["samply-api"]

[dependencies]
debugid = "0.8.0"
samply-api = { version = "0.22.0", path = "../samply-api", features = ["send_futures"], optional = true }
samply-symbols = { version = "0.21.0", path = "../samply-symbols", features = ["send_futures"] }
# symsrv = { path = "../../symsrv" }
symsrv = "0.3.0"
yoke = "0.7"
yoke-derive = "0.7"
libc = "0.2.71"
uuid = "1"
reqwest = { version = "0.11.10", default-features = false, features = [
    "rustls-tls",
    "stream",
    "gzip",
    "brotli",
    "deflate"
] }
bytes = "1.1.0"
memmap2 = "0.9.4"
tokio = { version = "1.17.0", features = ["fs"] }
futures-util = "0.3.25"

# Needed for moria_mac_spotlight, to find dSYM files
[target.'cfg(target_os = "macos")'.dependencies]
core-foundation-sys = "0.8.2"
core-foundation = "0.9.1"

[dev-dependencies]
futures = "0.3.5"