forked from blockscout/blockscout-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
78 lines (76 loc) · 3.13 KB
/
Copy pathCargo.toml
File metadata and controls
78 lines (76 loc) · 3.13 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[workspace]
resolver = "2"
members = [
"eth-bytecode-db",
"eth-bytecode-db-proto",
"eth-bytecode-db-server",
"eth-bytecode-db/entity",
"eth-bytecode-db/migration",
"eth-bytecode-db/verifier-alliance-entity",
"eth-bytecode-db/verifier-alliance-migration",
"verifier-alliance-database",
"verifier-alliance-database-tests",
]
[workspace.dependencies]
entity = { path = "eth-bytecode-db/entity" }
eth-bytecode-db = { path = "eth-bytecode-db" }
eth-bytecode-db-proto = { path = "eth-bytecode-db-proto" }
eth-bytecode-db-server = { path = "eth-bytecode-db-server" }
migration = { path = "eth-bytecode-db/migration" }
verifier-alliance-entity = { path = "eth-bytecode-db/verifier-alliance-entity" }
verifier-alliance-database = { path = "verifier-alliance-database" }
verifier-alliance-database-tests = { path = "verifier-alliance-database-tests" }
verifier-alliance-migration = { path = "eth-bytecode-db/verifier-alliance-migration" }
actix-prost = { git = "https://github.com/blockscout/actix-prost", rev = "4cbba2a" }
actix-prost-macros = { git = "https://github.com/blockscout/actix-prost", rev = "4cbba2a" }
actix-prost-build = { git = "https://github.com/blockscout/actix-prost", rev = "4cbba2a" }
actix-web = { version = "4" }
alloy-json-abi = { version = "0.8.10" }
amplify = { version = "4.7.0" }
anyhow = { version = "1" }
async-std = { version = "^1" }
async-trait = { version = "0.1" }
blockscout-display-bytes = { version = "1.1.0" }
blockscout-service-launcher = { version = "0.16.2", default-features = false, features = ["database-1_0"] }
bytes = { version = "1.2" }
ethabi = { version = "18.0" }
ethers = { version = "2.0.0" }
ethers-core = { version = "2.0.0" }
foundry-compilers = { version = "0.11.6" }
futures = { version = "0.3" }
hex = { version = "0.4" }
keccak-hash = { version = "0.11.0" }
lazy_static = { version = "1" }
mismatch = { version = "1.0" }
mockall = { version = "0.13.0" }
paste = { version = "1.0.14" }
pretty_assertions = { version = "1.3" }
prometheus = { version = "0.13" }
prost = { version = "0.11" }
prost-build = { version = "0.11" }
reqwest = { version = "0.12.9" }
reqwest-middleware = { version = "0.3.3" }
reqwest-retry = { version = "0.6.1" }
rstest = { version = "0.23.0" }
sea-orm = { version = "1.1.0" }
sea-orm-migration = { version = "1.1.0" }
semver = { version = "1.0" }
serde = { version = "1" }
serde_json = { version = "1.0" }
serde_with = { version = "3.11.0" }
sha2 = { version = "0.10.8" }
sha3 = { version = "0.10.8" }
smart-contract-verifier-proto = { git = "https://github.com/blockscout/blockscout-rs", rev = "7a6e9400" }
solidity-metadata = { version = "1.0" }
sourcify = { git = "https://github.com/blockscout/blockscout-rs", rev = "457af68" }
strum = { version = "0.26.3", default-features = false, features = ["derive"] }
test-log = { version = "0.2.16" }
thiserror = { version = "1" }
tokio = { version = "1" }
tokio-stream = { version = "0.1" }
tonic = { version = "0.8" }
tonic-build = { version = "0.8" }
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3" }
url = { version = "2" }
verification-common = { git = "https://github.com/blockscout/blockscout-rs", rev = "8d9cf0e" }