[package] name = "dirstat" version = "0.1.0" authors = ["Avril "] edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [profile.release] opt-level = 3 lto = "fat" codegen-units = 1 panic = "unwind" [features] default = ["splash", "inspect", "defer-drop", "jemalloc", "prealloc", "treemap"] # When using the REPL to inspect graphs, save command history. save-history = [] # Use jemalloc as global allocator instead of system allocator. # May potentially cause some speedups and better memory profile on large runs. jemalloc = ["jemallocator"] # Use `fallocate()` and memory mapping to save output data instead of normal `write()` syscalls prealloc = ["inspect", "libc", "memmap"] # Allow saving and loading of gathered data for later inspection inspect = ["serde", "serde_cbor", "async-compression"] # Enable dropping of certain large objects on background threads. defer-drop = [] # Show splash screen splash = [] [dependencies] ad-hoc-iter = "0.2.3" async-compression = {version = "0.3", features=["tokio-02", "bzip2"], optional=true} cfg-if = "1.0.0" color-eyre = {version = "0.5.10", default-features=false} futures = "0.3.12" jemallocator = {version = "0.3.2", optional = true} lazy_static = "1.4.0" libc = {version = "0.2.86", optional = true} memmap = {version = "0.7.0", optional = true} num_cpus = "1.13.0" once_cell = "1.5.2" pin-project = "1.0.5" rustyline = "7.1.0" serde = {version = "1.0.123", features=["derive"], optional=true} serde_cbor = {version = "0.11.1", optional=true} smallvec = "1.6.1" tokio = {version = "0.2", features=["full"]} treemap = {version = "0.3.2", optional=true}