-
Notifications
You must be signed in to change notification settings - Fork 839
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes #1450 Bringing back the Substrate crate that was forgotten in the monorepo import 😅. It is a doc-only crate. Version number is set to `1.0.0` and publishing is enabled (so that we can link to docs.rs). --------- Signed-off-by: Oliver Tale-Yazdi <[email protected]> Co-authored-by: Bastian Köcher <[email protected]> Co-authored-by: Kian Paimani <[email protected]>
- Loading branch information
1 parent
0c59232
commit 1835c09
Showing
4 changed files
with
357 additions
and
12 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
[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" | ||
|
||
# The dependencies are only needed for docs. | ||
[dependencies] | ||
aquamarine = "0.3.2" | ||
|
||
subkey = { path = "bin/utils/subkey" } | ||
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" } |
Oops, something went wrong.