mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 04:07:57 +00:00
495d24d730
Co-authored-by: Sergejs Kostjucenko <85877331+sergejparity@users.noreply.github.com> Co-authored-by: Bastian Köcher <info@kchr.de>
30 lines
1.1 KiB
TOML
30 lines
1.1 KiB
TOML
[package]
|
|
name = "substrate"
|
|
description = "Next-generation framework for blockchain innovation"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
version = "1.0.0"
|
|
publish = false
|
|
|
|
# The dependencies are only needed for docs.
|
|
[dependencies]
|
|
simple-mermaid = { git = "https://github.com/kianenigma/simple-mermaid.git", rev = "e48b187bcfd5cc75111acd9d241f1bd36604344b" }
|
|
|
|
subkey = { path = "bin/utils/subkey" }
|
|
chain-spec-builder = { package = "staging-chain-spec-builder", path = "bin/utils/chain-spec-builder" }
|
|
|
|
sc-service = { path = "client/service" }
|
|
sc-cli = { path = "client/cli" }
|
|
sc-consensus-aura = { path = "client/consensus/aura" }
|
|
sc-consensus-babe = { path = "client/consensus/babe" }
|
|
sc-consensus-grandpa = { path = "client/consensus/grandpa" }
|
|
sc-consensus-beefy = { path = "client/consensus/beefy" }
|
|
sc-consensus-manual-seal = { path = "client/consensus/manual-seal" }
|
|
sc-consensus-pow = { path = "client/consensus/pow" }
|
|
|
|
sp-runtime = { path = "primitives/runtime" }
|
|
frame-support = { path = "frame/support" }
|