# 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 = "alloc-track" version = "0.3.1" authors = ["Protryon "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Track memory allocations by backtrace or originating thread" readme = "README.md" keywords = [ "memory", "alloc", "trace", "segmentation", "leak", ] license = "MIT OR Apache-2.0" repository = "https://github.com/Protryon/alloc-track" [lib] name = "alloc_track" path = "src/lib.rs" [[example]] name = "example" path = "examples/example.rs" [dependencies.backtrace] version = "0.3" optional = true [dependencies.dashmap] version = "5.3" [dependencies.lazy_static] version = "1.4" [features] default = [ "backtrace", "fs", ] fs = [ "procfs", "libc", "windows", ] [target."cfg(unix)".dependencies.libc] version = "0.2" optional = true [target."cfg(unix)".dependencies.procfs] version = "0.14" optional = true [target."cfg(windows)".dependencies.windows] version = "0.44.0" features = [ "Win32_System_Threading", "Win32_Foundation", "Win32_System_Diagnostics_ToolHelp", ] optional = true