# 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 = "panik" version = "0.2.0" authors = ["Dom Williams "] description = "Application-wide panic handling, whereby panics occurring in any thread are treated as a hard error and can be detected by other threads to trigger a graceful exit" homepage = "https://github.com/DomWilliams0/panik-rs" readme = "README.md" keywords = ["panic", "application", "thread", "gamedev"] categories = ["game-engines", "game-development", "concurrency"] license = "MIT" repository = "https://github.com/DomWilliams0/panik-rs" [dependencies.backtrace] version = "0.3" [dependencies.lazy_static] version = "1.4" [dependencies.log] version = "0.4" optional = true [dependencies.parking_lot] version = "0.11" optional = true [dependencies.slog] version = "2.7" optional = true [dependencies.slog-stdlog] version = "4.1" optional = true [dev-dependencies.env_logger] version = "0.8" [dev-dependencies.slog-scope] version = "4.4" [dev-dependencies.slog-term] version = "2.6" [features] default = ["use-log"] use-log = ["log"] use-parking-lot = ["parking_lot"] use-slog = ["slog", "slog-stdlog"] use-stderr = []