-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (26 loc) · 871 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
[package]
name = "starknet-class-hash"
description = "Utility for getting starknet contract's class hashes from Scarb projects."
homepage = "https://github.com/ericnordelo/cairo-class-hash"
version = "0.1.0"
edition = "2021"
license = "MIT"
readme = "README.md"
repository = "https://github.com/ericnordelo/cairo-class-hash"
keywords = ["cairo", "starknet", "class-hash", "class", "hash"]
categories = ["command-line-utilities"]
[lib]
name = "class_hash"
path = "src/class_hash/lib.rs"
[[bin]]
name = "class_hash"
doc = false
[dependencies]
anyhow = "1.0.79"
camino = "1.1.6"
clap = { version = "4.4.18", features = ["derive"] }
num = "0.4.1"
prettytable = "0.10.0"
starknet = { git = "https://github.com/xJonathanLEI/starknet-rs", rev = "c974e5cb42e8d8344cee910b76005ec46b4dd3ed" }
serde = "1.0.196"
serde_json = { version = "1.0.99", features = ["preserve_order"] }