-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (27 loc) · 838 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
[workspace]
members = ["error-info", "error-info-macros"]
resolver = "2"
[workspace.package]
version = "0.3.0"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/lasantosr/error-info"
keywords = ["error", "info", "code"]
categories = ["internationalization", "rust-patterns", "web-programming"]
exclude = [".vscode/*", ".rustfmt.toml", ".taplo.toml"]
[workspace.dependencies]
error-info = { path = "./error-info" }
error-info-macros = { version = "=0.3.0", path = "./error-info-macros" }
darling = "0.20"
heck = "0.4"
http = "1"
linkme = "0.3"
macro-field-utils = "0.2"
once_cell = "1"
proc-macro-error = "1"
proc-macro2 = "1"
quote = "1"
regex = "1"
serde = "1"
syn = "2"