-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (37 loc) · 858 Bytes
/
Cargo.toml
File metadata and controls
40 lines (37 loc) · 858 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
35
36
37
38
39
40
[workspace]
members = [
"common",
"antelope-common",
"cosmos-common",
"ethereum/common",
"ethereum/erc20-token-metadata",
"solana/spl-initialized-account",
"solana/accounts",
"solana/common",
"stellar-common",
"testing",
"tron-common",
]
resolver = "2"
[workspace.package]
edition = "2021"
homepage = "https://substreams.streamingfast.io/"
repository = "https://github.com/streamingfast/substreams-foundational-modules"
license = "Apache-2.0"
keywords = ["substreams", "wasm", "streamingfast", "thegraph"]
categories = ["wasm"]
[workspace.dependencies]
anyhow = "1"
base64 = "0.22.1"
bs58 = "0.4"
hex = "0.4.3"
num-bigint = "0.4"
prost = "0.13"
prost-types = "0.13"
substreams = "0.7"
testing = { path = "./testing" }
pretty_assertions = "1.2.1"
[profile.release]
lto = true
opt-level = 's'
strip = "debuginfo"