-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 782 Bytes
/
Cargo.toml
File metadata and controls
28 lines (24 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[workspace]
[workspace.package]
edition = "2021"
license = "MIT OR Apache-2.0"
#homepage.workspace = true
repository = "https://github.com/yesint/thiserror_string_context"
documentation = "https://docs.rs/thiserror_string_context"
readme = "README.md"
keywords = ["thiserror", "context", "string"]
categories = ["development-tools","rust-patterns"]
[package]
name = "thiserror_string_context"
version = "0.1.5"
edition.workspace = true
license.workspace = true
description = "Adds context string to error enums generated with thiserror"
repository.workspace = true
documentation.workspace = true
[dependencies]
thiserror_string_context_macro = {version="0.1.2", path="src/thiserror_string_context_macro"}
thiserror = "1.0"
[dev-dependencies]
thiserror = "1.0"
anyhow = "1.0.86"