elfcore 2.0.2

elfcore is a crate to create ELF core dumps for processes on Linux.
Documentation
# 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 = "2021"
name = "elfcore"
version = "2.0.2"
authors = ["Microsoft"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "elfcore is a crate to create ELF core dumps for processes on Linux."
readme = "README.md"
keywords = [
    "elf",
    "coredump",
    "debugging",
]
categories = [
    "development-tools::debugging",
    "os::linux-apis",
]
license = "MIT"
repository = "https://github.com/microsoft/elfcore"

[lib]
name = "elfcore"
path = "src/lib.rs"

[dependencies.smallvec]
version = "1.8"

[dependencies.thiserror]
version = "2.0"

[dependencies.tracing]
version = "0.1"

[dependencies.zerocopy]
version = "0.8"
features = ["derive"]

[target."cfg(unix)".dependencies.libc]
version = "0.2"

[target."cfg(unix)".dependencies.nix]
version = "0.31"
features = [
    "feature",
    "process",
    "ptrace",
    "uio",
]
default-features = false

[lints.clippy]
dbg_macro = "warn"
debug_assert_with_mut_call = "warn"
filter_map_next = "warn"
fn_params_excessive_bools = "warn"
implicit_clone = "warn"
imprecise_flops = "warn"
inefficient_to_string = "warn"
linkedlist = "warn"
lossy_float_literal = "warn"
macro_use_imports = "warn"
option_option = "warn"
ptr_cast_constness = "warn"
ref_option_ref = "warn"
rest_pat_in_fully_bound_structs = "warn"
suboptimal_flops = "warn"
undocumented_unsafe_blocks = "warn"
unnecessary_box_returns = "warn"

[lints.rust.future_incompatible]
level = "deny"
priority = -2

[lints.rust.rust_2018_idioms]
level = "warn"
priority = -2