-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (33 loc) · 903 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
31
32
33
34
35
36
37
38
39
40
[package]
name = "cryptopunks"
version = "0.1.0"
description = "Cryptopunks Substreams"
edition = "2021"
repository = "https://github.com/itsjerryokolo/cryptopunks-substreams"
[lib]
name = "substreams"
crate-type = ["cdylib"]
[dependencies]
ethabi = "18.0.0"
hex-literal = "0.3.4"
bigdecimal = "0.3.0"
prost = "0.11"
substreams-entity-change = "0.2.1"
hex = "0.4.3"
num-bigint = "0.4"
pad = "0.1"
thiserror = "1.0.37"
# Use latest from https://crates.io/crates/substreams
substreams = "0.4"
# Use latest from https://crates.io/crates/substreams-ethereum
substreams-ethereum = "0.7"
# Required so that ethabi > ethereum-types build correctly under wasm32-unknown-unknown
[target.wasm32-unknown-unknown.dependencies]
getrandom = { version = "0.2", features = ["custom"] }
[build-dependencies]
anyhow = "1"
substreams-ethereum = "0.7"
[profile.release]
lto = true
opt-level = 's'
strip = "debuginfo"