ctxerr/derive/Cargo.toml

20 lines
570 B
TOML
Raw Normal View History

2023-03-06 20:53:49 +04:00
[package]
name = "ctxerr_derive"
2023-04-05 15:14:40 +04:00
version = "0.5.0"
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"
[lib]
proc-macro = true
[dependencies]
proc-macro2 = "1"
quote = "1"
2023-03-28 17:26:03 +04:00
syn = {version = "2", features = ["full"]}