ctxerr/Cargo.toml

20 lines
588 B
TOML
Raw Normal View History

2023-03-06 20:53:49 +04:00
[package]
name = "ctxerr"
2023-04-05 15:14:40 +04:00
version = "0.2.5"
2023-03-06 20:53:49 +04:00
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]
2023-04-05 15:14:40 +04:00
ctxerr_derive = {version = "0.5.0", path = "derive"}
2023-03-28 17:26:03 +04:00
thiserror = "1.0.40"