[package] name = "bin_common" version = "0.2.0" authors = ["Sophie Tauchert "] edition = "2018" description = "A library for common things in binaries." readme = "README.md" repository = "https://gitlab.com/999eagle/rust_bin_common" license = "MIT" [features] default = ["log_rotation", "panic_handler"] log_rotation = ["xz2"] panic_handler = ["backtrace"] [dependencies] log = "^0.4" fern = { version = "^0.6", features = ["colored"] } chrono = "^0.4" directories = "^2.0" xz2 = { version = "^0.1", optional = true } backtrace = { version = "^0.3", features = ["cpp_demangle"], optional = true }