-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
30 lines (27 loc) · 1018 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
[workspace]
resolver = "2"
members = ["core", "substreams-antelope", "abigen", "abigen-tests"]
[profile.release]
lto = true
opt-level = 's'
strip = "debuginfo"
[workspace.package]
version = "0.6.0"
edition = "2021"
description = "Substreams development kit for Antelope chains, contains Firehose Block model and helpers."
authors = [
"Fred <fred@pinax.network>",
"Denis <denis@pinax.network>",
"Yaro <yaro@pinax.network>",
]
homepage = "https://github.com/pinax-network/substreams-antelope"
repository = "https://github.com/pinax-network/substreams-antelope"
readme = "README.md"
keywords = ["substreams", "antelope", "pinax", "firehose", "thegraph"]
categories = ["api-bindings", "external-ffi-bindings", "wasm"]
license = "MIT OR Apache-2.0"
rust-version = "1.76"
[workspace.dependencies]
substreams-antelope = { version = "0.6.*", path = "./substreams-antelope" }
substreams-antelope-core = { version = "0.6.*", path = "./core" }
substreams-antelope-abigen = { version = "0.6.*", path = "./abigen" }