Skip to content

Commit

Permalink
BLOCKCHAIN-552 Fixes related to versions and flags
Browse files Browse the repository at this point in the history
  • Loading branch information
jindra12 committed Dec 13, 2024
1 parent 0ab2c89 commit 00453cd
Show file tree
Hide file tree
Showing 19 changed files with 5,805 additions and 12,916 deletions.
18,000 changes: 5,433 additions & 12,567 deletions Cargo.lock

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions liberland-extension/runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ publish = false

[dependencies]
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false }
frame-support = { default-features = false, git = "/~https://github.com/paritytech/polkadot-sdk", rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401" }
pallet-contracts = { default-features = false, git = "/~https://github.com/paritytech/polkadot-sdk", rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401" }
sp-std = { default-features = false, git = "/~https://github.com/paritytech/polkadot-sdk", rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401" }
sp-core = { default-features = false, git = "/~https://github.com/paritytech/polkadot-sdk", rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401" }
sp-runtime = { default-features = false, git = "/~https://github.com/paritytech/polkadot-sdk", rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401" }
frame-system = { default-features = false, git = "/~https://github.com/paritytech/polkadot-sdk", rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401" }
frame-support = { default-features = false, git = "/~https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" }
pallet-contracts = { default-features = false, git = "/~https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" }
sp-std = { default-features = false, git = "/~https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" }
sp-core = { default-features = false, git = "/~https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" }
sp-runtime = { default-features = false, git = "/~https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" }
frame-system = { default-features = false, git = "/~https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" }
log = { version = "0.4.17", default-features = false }

pallet-llm = { default-features = false, path = "../../substrate/frame/llm" }
pallet-assets = { default-features = false, path = "../../substrate/frame/assets" }
pallet-asset-conversion = { default-features = false, rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401", git = "/~https://github.com/paritytech/polkadot-sdk" }
pallet-asset-conversion = { default-features = false, branch = "release-polkadot-v1.1.0", git = "/~https://github.com/paritytech/polkadot-sdk" }

[features]
default = [ "std" ]
Expand Down
134 changes: 67 additions & 67 deletions substrate/bin/node/cli/Cargo.toml

Large diffs are not rendered by default.

46 changes: 23 additions & 23 deletions substrate/bin/node/rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,26 @@ targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
jsonrpsee = { version = "0.16.2", features = ["server"] }
node-primitives = { rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401", git = "/~https://github.com/paritytech/polkadot-sdk" }
pallet-transaction-payment-rpc = { rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401", git = "/~https://github.com/paritytech/polkadot-sdk" }
mmr-rpc = { rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401", git = "/~https://github.com/paritytech/polkadot-sdk" }
sc-chain-spec = { rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401", git = "/~https://github.com/paritytech/polkadot-sdk" }
sc-client-api = { rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401", git = "/~https://github.com/paritytech/polkadot-sdk" }
sc-consensus-babe = { rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401", git = "/~https://github.com/paritytech/polkadot-sdk" }
sc-consensus-babe-rpc = { rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401", git = "/~https://github.com/paritytech/polkadot-sdk" }
sc-consensus-grandpa = { rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401", git = "/~https://github.com/paritytech/polkadot-sdk" }
sc-consensus-grandpa-rpc = { rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401", git = "/~https://github.com/paritytech/polkadot-sdk" }
sc-rpc = { rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401", git = "/~https://github.com/paritytech/polkadot-sdk" }
sc-rpc-api = { rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401", git = "/~https://github.com/paritytech/polkadot-sdk" }
sc-rpc-spec-v2 = { rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401", git = "/~https://github.com/paritytech/polkadot-sdk" }
sc-sync-state-rpc = { rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401", git = "/~https://github.com/paritytech/polkadot-sdk" }
sc-transaction-pool-api = { rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401", git = "/~https://github.com/paritytech/polkadot-sdk" }
sp-api = { rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401", git = "/~https://github.com/paritytech/polkadot-sdk" }
sp-block-builder = { rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401", git = "/~https://github.com/paritytech/polkadot-sdk" }
sp-blockchain = { rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401", git = "/~https://github.com/paritytech/polkadot-sdk" }
sp-consensus = { rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401", git = "/~https://github.com/paritytech/polkadot-sdk" }
sp-consensus-babe = { rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401", git = "/~https://github.com/paritytech/polkadot-sdk" }
sp-keystore = { rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401", git = "/~https://github.com/paritytech/polkadot-sdk" }
sp-runtime = { rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401", git = "/~https://github.com/paritytech/polkadot-sdk" }
substrate-frame-rpc-system = { rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401", git = "/~https://github.com/paritytech/polkadot-sdk" }
substrate-state-trie-migration-rpc = { rev = "65a434a0ed474c14f692dcf9f69f8da66a99d401", git = "/~https://github.com/paritytech/polkadot-sdk" }
node-primitives = { branch = "release-polkadot-v1.1.0", git = "/~https://github.com/paritytech/polkadot-sdk" }
pallet-transaction-payment-rpc = { branch = "release-polkadot-v1.1.0", git = "/~https://github.com/paritytech/polkadot-sdk" }
mmr-rpc = { branch = "release-polkadot-v1.1.0", git = "/~https://github.com/paritytech/polkadot-sdk" }
sc-chain-spec = { branch = "release-polkadot-v1.1.0", git = "/~https://github.com/paritytech/polkadot-sdk" }
sc-client-api = { branch = "release-polkadot-v1.1.0", git = "/~https://github.com/paritytech/polkadot-sdk" }
sc-consensus-babe = { branch = "release-polkadot-v1.1.0", git = "/~https://github.com/paritytech/polkadot-sdk" }
sc-consensus-babe-rpc = { branch = "release-polkadot-v1.1.0", git = "/~https://github.com/paritytech/polkadot-sdk" }
sc-consensus-grandpa = { branch = "release-polkadot-v1.1.0", git = "/~https://github.com/paritytech/polkadot-sdk" }
sc-consensus-grandpa-rpc = { branch = "release-polkadot-v1.1.0", git = "/~https://github.com/paritytech/polkadot-sdk" }
sc-rpc = { branch = "release-polkadot-v1.1.0", git = "/~https://github.com/paritytech/polkadot-sdk" }
sc-rpc-api = { branch = "release-polkadot-v1.1.0", git = "/~https://github.com/paritytech/polkadot-sdk" }
sc-rpc-spec-v2 = { branch = "release-polkadot-v1.1.0", git = "/~https://github.com/paritytech/polkadot-sdk" }
sc-sync-state-rpc = { branch = "release-polkadot-v1.1.0", git = "/~https://github.com/paritytech/polkadot-sdk" }
sc-transaction-pool-api = { branch = "release-polkadot-v1.1.0", git = "/~https://github.com/paritytech/polkadot-sdk" }
sp-api = { branch = "release-polkadot-v1.1.0", git = "/~https://github.com/paritytech/polkadot-sdk" }
sp-block-builder = { branch = "release-polkadot-v1.1.0", git = "/~https://github.com/paritytech/polkadot-sdk" }
sp-blockchain = { branch = "release-polkadot-v1.1.0", git = "/~https://github.com/paritytech/polkadot-sdk" }
sp-consensus = { branch = "release-polkadot-v1.1.0", git = "/~https://github.com/paritytech/polkadot-sdk" }
sp-consensus-babe = { branch = "release-polkadot-v1.1.0", git = "/~https://github.com/paritytech/polkadot-sdk" }
sp-keystore = { branch = "release-polkadot-v1.1.0", git = "/~https://github.com/paritytech/polkadot-sdk" }
sp-runtime = { branch = "release-polkadot-v1.1.0", git = "/~https://github.com/paritytech/polkadot-sdk" }
substrate-frame-rpc-system = { branch = "release-polkadot-v1.1.0", git = "/~https://github.com/paritytech/polkadot-sdk" }
substrate-state-trie-migration-rpc = { branch = "release-polkadot-v1.1.0", git = "/~https://github.com/paritytech/polkadot-sdk" }
Loading

0 comments on commit 00453cd

Please sign in to comment.