-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
31 lines (28 loc) · 920 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
[workspace]
members = ["core", "substreams-near"]
resolver = "2"
[profile.release]
lto = true
opt-level = 's'
strip = "debuginfo"
[workspace.package]
version = "0.10.2"
edition = "2021"
description = "Substreams development kit for NEAR chains, contains Firehose Block model and helpers."
homepage = "https://substreams.streamingfast.io/"
repository = "https://github.com/streamingfast/substreams-ethereum/tree/develop/substreams-near"
license = "Apache-2.0"
readme = "README.md"
keywords = ["substreams", "near", "streamingfast", "firehose", "thegraph"]
categories = ["api-bindings", "external-ffi-bindings", "wasm"]
rust-version = "1.71.1"
[workspace.dependencies]
anyhow = "1"
bs58 = "0.4.0"
hex = "0.4.3"
prost = "0.13"
prost-build = "0.13"
prost-types = "0.13"
substreams = "0.6"
substreams-near = { version = "0.10.2", path = "./substreams-near" }
substreams-near-core = { version = "0.10.2", path = "./core" }