-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
56 lines (48 loc) · 1.48 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[workspace]
members = [
"crates/zksync-error-codegen-cli",
"crates/zksync-error-codegen",
"crates/zksync-error-model",
"crates/zksync-error-description",
]
resolver = "2"
[workspace.package]
authors = [
"Igor Zhirkov <iz@matterlabs.dev>"
]
categories = ["cryptography"]
edition = "2021"
homepage = "https://zksync.io/"
keywords = ["blockchain", "zksync", "error"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/matter-labs/zksync-error"
version = "0.1.0"
[workspace.dependencies]
#########################
# External dependencies #
#########################
cargo_metadata = "0.18"
clap = { version = "4.5.21", features = ["derive", "string"] }
derive_more = { version = "2.0.0", features = ["display"] }
include_dir = "0.7.4"
maplit = "1.0.2"
proc-macro2 = "1.0.93"
quote = { version = "1.0.38" }
reqwest = { version = "0.12.12", default-features = false }
rustfmt-wrapper = "0.2.1"
serde = { version = "1.0.210", features = [ "derive" ] }
serde_json = { version = "1.0.128" }
serde_json_path_to_error = "0.1.4"
strum = "0.26.3"
strum_macros = "0.26.4"
syn = { version = "2.0.96", features = [ "full" ] }
tera = "1.20.0"
thiserror = "1"
vector-map = "1.0.1"
tracing = "0.1"
#########################
# Local dependencies #
#########################
zksync-error-codegen = { path = "crates/zksync-error-codegen" }
zksync-error-description = { path = "crates/zksync-error-description", features = ["with_adapter"] }
zksync-error-model = { path = "crates/zksync-error-model" }