-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (29 loc) · 708 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (29 loc) · 708 Bytes
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
[package]
name = "solsab_substream"
version = "0.0.1"
edition = "2021"
[lib]
name = "substreams"
crate-type = ["cdylib"]
[dependencies]
hex-literal = "0.3.4"
num-bigint = "0.4"
num-traits = "0.2.15"
prost = "0.13"
prost-types = "0.13"
substreams = "0.6"
substreams-solana = "0.14"
substreams-solana-program-instructions = "0.2"
anchor-lang = ">=0.30.1"
sologger_log_context = "0.1.2"
base64 = "0.22.1"
# 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"
regex = "1.8"
[profile.release]
lto = true
opt-level = 's'
strip = "debuginfo"