-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Move developer-hub to polkadot-sdk-docs
#2598
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
a797f45
67c0078
6f33cd6
75738cf
14b7132
f869f8c
07beabb
c9ed2ee
a60b228
866676d
0879cba
dd8ea70
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
| 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. | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How does docify prevent this?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As long as docify still uses git urls, then that's the case |
||
| 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"] | ||
Uh oh!
There was an error while loading. Please reload this page.