-
Notifications
You must be signed in to change notification settings - Fork 268
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (35 loc) · 1.21 KB
/
Cargo.toml
File metadata and controls
37 lines (35 loc) · 1.21 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
[package]
name = "pathfinder-class-hash"
version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
rust-version = { workspace = true }
description = "Pathfinder's class hash computation and verification"
repository = "https://github.com/eqlabs/pathfinder"
keywords = ["starknet", "ethereum", "web3", "cryptography", "hash"]
categories = [
"cryptography",
"cryptography::cryptocurrencies",
"network-programming",
"web-programming",
]
[dependencies]
anyhow = { workspace = true }
pathfinder-common = { version = "0.20.4", path = "../common" }
pathfinder-crypto = { version = "0.20.4", path = "../crypto" }
primitive-types = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true, features = [
"arbitrary_precision",
"raw_value",
] }
serde_with = { workspace = true }
sha3 = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true }
[dev-dependencies]
fake = { workspace = true, features = ["serde_json"] }
rand = { workspace = true }
starknet-gateway-test-fixtures = { path = "../gateway-test-fixtures" }
tokio = { workspace = true, features = ["macros", "test-util"] }