Skip to content

Commit

Permalink
Merge pull request #34 from pendulum-chain/polkadot-v1.1.0b
Browse files Browse the repository at this point in the history
Avoid specifying sp version directly.
  • Loading branch information
gianfra-t authored Aug 29, 2024
2 parents 9b8e2b7 + b9d8380 commit 519b60d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ exclude = ["autogenerator/*"]
serde_json = { version = '1.0.64', default-features = false, features = ["alloc"], optional = true }
serde = { version = "1.0.136", default-features = false, features = ["derive", "alloc"], optional = true }
hex = { version = "0.4", default-features = false , features = ["alloc"]}
sodalite = { version = "0.4.0" }
sodalite = { version = "0.4.0", default-features = false }
sha2 = { default-features = false, version = "0.10.8" }
lazy_static = { version = "1.4.0", features = ["spin_no_std"] }
base64 = { default-features = false, version = "0.13.0" }
num-rational = {version = "0.4", default-features = false}
scale-info = {version = "2.1.1", default-features = false, features = ["derive"]}

# Substrate
sp-std = { version = "8.0.0", git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
sp-runtime = { version = "24.0.0", git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false, optional = true }
sp-io = { version = "23.0.0", git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false, optional = true }
sp-std = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false, optional = true }
sp-io = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false, optional = true }

[features]
default = [ "offchain", "std" ]
Expand Down

0 comments on commit 519b60d

Please sign in to comment.