| # 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 believe there's an error in this file please file an |
| # issue against the rust-lang/cargo repository. If you're |
| # editing this file be aware that the upstream Cargo.toml |
| # will likely look very different (and much more reasonable) |
| |
| [package] |
| edition = "2018" |
| name = "deepsize" |
| version = "0.2.0" |
| authors = ["Aeledfyr <aeledfyr@gmail.com>"] |
| include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] |
| description = "A crate for measuring the total size of object on the stack and heap" |
| readme = "README.md" |
| keywords = ["size", "stack", "heap"] |
| categories = ["development-tools::profiling", "memory-management"] |
| license = "MIT" |
| repository = "https://github.com/Aeledfyr/deepsize/" |
| [dependencies.arrayvec] |
| version = "^0.5" |
| optional = true |
| |
| [dependencies.chrono] |
| version = "^0.4" |
| optional = true |
| |
| [dependencies.deepsize_derive] |
| version = "0.1.1" |
| optional = true |
| |
| [dependencies.hashbrown] |
| version = "^0.9" |
| optional = true |
| |
| [dependencies.indexmap] |
| version = "^1" |
| optional = true |
| |
| [dependencies.slab] |
| version = "^0.4" |
| optional = true |
| |
| [dependencies.slotmap] |
| version = "^0.4" |
| optional = true |
| |
| [dependencies.smallvec] |
| version = "^1" |
| optional = true |
| [dev-dependencies.deepsize_derive] |
| version = "0.1.1" |
| |
| [features] |
| default = ["std", "derive"] |
| derive = ["deepsize_derive"] |
| std = [] |