-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
32 lines (28 loc) · 874 Bytes
/
Cargo.toml
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
29
30
31
32
[package]
name = "thiserror-ext"
description = "Useful extension utilities for `thiserror`."
version = { workspace = true }
edition = { workspace = true }
authors = { workspace = true }
repository = { workspace = true }
keywords = { workspace = true }
categories = { workspace = true }
license = { workspace = true }
[dependencies]
thiserror = "1"
thiserror-ext-derive = { version = "=0.2.1", path = "derive" }
[dev-dependencies]
anyhow = "1"
expect-test = "1"
sealed_test = "1"
[features]
backtrace = ["thiserror-ext-derive/backtrace"]
[workspace]
members = ["derive"]
package.version = "0.2.1"
package.edition = "2021"
package.authors = ["Bugen Zhao <[email protected]>"]
package.repository = "https://github.com/risingwavelabs/thiserror-ext"
package.keywords = ["error", "error-handling", "derive"]
package.categories = ["rust-patterns"]
package.license = "Apache-2.0"