Skip to content
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

Follow up for: Use the umbrella crate for the parachain template #5993 #7464

Open
wants to merge 26 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
458f1d0
removing unused imports
seemantaggarwal Feb 5, 2025
a7eafd4
cargo lock commit
seemantaggarwal Feb 5, 2025
1b4dadf
removing sc-tracing from parachain node
seemantaggarwal Feb 5, 2025
31c7872
restoring dependencies
seemantaggarwal Feb 6, 2025
5a107ef
Merge branch 'master' into seemant-parachain-umbrella-crate-mig
seemantaggarwal Feb 6, 2025
60a91c2
adding sc-tracing in umbrella
seemantaggarwal Feb 6, 2025
64a49ad
importing sc-tracing
seemantaggarwal Feb 6, 2025
397a818
using sc-tracing from polkadot sdk
seemantaggarwal Feb 6, 2025
a889bbc
adding sc-tracing-proc-macro
seemantaggarwal Feb 6, 2025
9ae57ca
updating cargo toml for umbrella
seemantaggarwal Feb 6, 2025
b2c016a
Update umbrella/Cargo.toml
seemantaggarwal Feb 6, 2025
e15c49d
removing breaking umbrella updates
seemantaggarwal Feb 6, 2025
ec70c2e
trial and error
seemantaggarwal Feb 7, 2025
8a09b44
creating a new feature for umbrella
seemantaggarwal Feb 10, 2025
38c3dcc
Merge branch 'master' into seemant-parachain-umbrella-crate-mig
seemantaggarwal Feb 10, 2025
a62bced
cargo fmt
seemantaggarwal Feb 10, 2025
afcd41f
adding additional crate_name resolution for sc-tracing
seemantaggarwal Feb 13, 2025
db8ca90
fast forwarding Cargo.lock
seemantaggarwal Feb 13, 2025
e20a4f1
adding prdoc
seemantaggarwal Feb 13, 2025
718604e
Merge branch 'master' into seemant-parachain-umbrella-crate-mig
seemantaggarwal Feb 13, 2025
ab2822e
Merge branch 'master' into seemant-parachain-umbrella-crate-mig
seemantaggarwal Feb 14, 2025
8310ca2
taplo and fmt
seemantaggarwal Feb 14, 2025
3ef39b8
cargo.lock patch
seemantaggarwal Feb 14, 2025
0ae2a6c
cargo fmt
seemantaggarwal Feb 14, 2025
02d57d5
taplo format
seemantaggarwal Feb 14, 2025
1c69a34
simplifying crate_name code
seemantaggarwal Feb 14, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 0 additions & 6 deletions templates/parachain/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,17 @@ build = "build.rs"

[dependencies]
clap = { features = ["derive"], workspace = true }
codec = { workspace = true, default-features = true }
color-print = { workspace = true }
docify = { workspace = true }
futures = { workspace = true }
jsonrpsee = { features = ["server"], workspace = true }
log = { workspace = true, default-features = true }
serde = { features = ["derive"], workspace = true, default-features = true }
serde_json = { workspace = true, default-features = true }

polkadot-sdk = { workspace = true, features = ["node"] }

parachain-template-runtime = { workspace = true }

# Substrate
prometheus-endpoint = { workspace = true, default-features = true }
sc-tracing = { workspace = true, default-features = true }
serban300 marked this conversation as resolved.
Show resolved Hide resolved

[build-dependencies]
polkadot-sdk = { workspace = true, features = ["substrate-build-script-utils"] }

Expand Down
Loading