ctxerr/Cargo.toml

20 lines
588 B
TOML

[package]
name = "ctxerr"
version = "0.2.5"
authors = ["Andrey Tkachenko <andrey@aidev.ru>"]
repository = "https://github.com/andreytkachenko/ctxerr.git"
keywords = ["error", "handling", "thiserror", "context", "backtrace"]
categories = ["error-handling"]
description = "Tiny wrapper on thiserror embedding backtrace and location"
license = "MIT OR Apache-2.0"
exclude = [".gitignore", ".cargo/config", ".github/**", "codecov.yml"]
edition = "2021"
resolver = "2"
[workspace]
members = ["derive"]
[dependencies]
ctxerr_derive = {version = "0.5.1", path = "derive"}
thiserror = "1.0.40"