-
Notifications
You must be signed in to change notification settings - Fork 689
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR is a continuation of #2102 and part of an initiative started here https://hackmd.io/@romanp/rJ318ZCEp What has been done: - The content under `docs/*` (with the exception of `docs/mermaid`) has been moved to `docs/contributor/` - Developer Hub has been renamed to Polkadot SDK Docs, and the crate has been renamed from `developer-hub` to `polkadot-sdk-docs` - The content under `developer-hub/*` has been moved to `docs/sdk` --- Original PR #2565, it has been close due to too many rebase conflicts --------- Co-authored-by: Serban Iorga <serban@parity.io> Co-authored-by: Chevdor <chevdor@users.noreply.github.com> Co-authored-by: Egor_P <egor@parity.io> Co-authored-by: Bastian Köcher <git@kchr.de>
- Loading branch information
1 parent
2f9af78
commit a310df2
Showing
67 changed files
with
153 additions
and
154 deletions.
There are no files selected for viewing
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
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
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
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 was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,66 @@ | ||
[package] | ||
name = "polkadot-sdk-docs" | ||
description = "The one stop shop for developers of the polakdot-sdk" | ||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0" | ||
homepage = "paritytech.github.io" | ||
repository.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
# This crate is not publish-able to crates.io for now because of docify. | ||
publish = false | ||
version = "0.0.1" | ||
|
||
[dependencies] | ||
# Needed for all FRAME-based code | ||
parity-scale-codec = { version = "3.0.0", default-features = false } | ||
scale-info = { version = "2.6.0", default-features = false } | ||
frame = { path = "../../substrate/frame", features = ["experimental", "runtime"] } | ||
pallet-examples = { path = "../../substrate/frame/examples" } | ||
pallet-default-config-example = { path = "../../substrate/frame/examples/default-config" } | ||
|
||
# How we build docs in rust-docs | ||
simple-mermaid = { git = "https://github.com/kianenigma/simple-mermaid.git", branch = "main" } | ||
docify = "0.2.6" | ||
|
||
# Polkadot SDK deps, typically all should only be scope such that we can link to their doc item. | ||
node-cli = { package = "staging-node-cli", path = "../../substrate/bin/node/cli" } | ||
kitchensink-runtime = { path = "../../substrate/bin/node/runtime" } | ||
chain-spec-builder = { package = "staging-chain-spec-builder", path = "../../substrate/bin/utils/chain-spec-builder" } | ||
subkey = { path = "../../substrate/bin/utils/subkey" } | ||
|
||
# Substrate | ||
sc-network = { path = "../../substrate/client/network" } | ||
sc-rpc-api = { path = "../../substrate/client/rpc-api" } | ||
sc-rpc = { path = "../../substrate/client/rpc" } | ||
sc-client-db = { path = "../../substrate/client/db" } | ||
sc-cli = { path = "../../substrate/client/cli" } | ||
sc-consensus-aura = { path = "../../substrate/client/consensus/aura" } | ||
sc-consensus-babe = { path = "../../substrate/client/consensus/babe" } | ||
sc-consensus-grandpa = { path = "../../substrate/client/consensus/grandpa" } | ||
sc-consensus-beefy = { path = "../../substrate/client/consensus/beefy" } | ||
sc-consensus-manual-seal = { path = "../../substrate/client/consensus/manual-seal" } | ||
sc-consensus-pow = { path = "../../substrate/client/consensus/pow" } | ||
substrate-wasm-builder = { path = "../../substrate/utils/wasm-builder" } | ||
|
||
# Cumulus | ||
cumulus-pallet-aura-ext = { path = "../../cumulus/pallets/aura-ext" } | ||
cumulus-pallet-parachain-system = { path = "../../cumulus/pallets/parachain-system", features = [ | ||
"parameterized-consensus-hook", | ||
] } | ||
parachain-info = { package = "staging-parachain-info", path = "../../cumulus/parachains/pallets/parachain-info" } | ||
pallet-aura = { path = "../../substrate/frame/aura", default-features = false } | ||
pallet-timestamp = { path = "../../substrate/frame/timestamp" } | ||
|
||
# Primitives | ||
sp-io = { path = "../../substrate/primitives/io" } | ||
sp-api = { path = "../../substrate/primitives/api" } | ||
sp-core = { path = "../../substrate/primitives/core" } | ||
sp-keyring = { path = "../../substrate/primitives/keyring" } | ||
sp-runtime = { path = "../../substrate/primitives/runtime" } | ||
|
||
[dev-dependencies] | ||
parity-scale-codec = "3.6.5" | ||
scale-info = "2.9.0" | ||
|
||
[features] | ||
experimental = ["pallet-aura/experimental"] |
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
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
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
Oops, something went wrong.