File tree Expand file tree Collapse file tree 9 files changed +8
-9
lines changed
Expand file tree Collapse file tree 9 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ edition = "2024"
1717documentation = " https://learn.onpop.io/"
1818license = " GPL-3.0"
1919repository = " https://github.com/r0gue-io/pop-cli"
20- rust-version = " 1.90 "
20+ rust-version = " 1.91 "
2121version = " 0.11.0"
2222
2323[workspace .dependencies ]
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ You can install Pop CLI from [crates.io](https://crates.io/crates/pop-cli):
2222cargo install --force --locked pop-cli
2323```
2424
25- > :information_source : Pop CLI requires Rust 1.90 or later.
25+ > :information_source : Pop CLI requires Rust 1.91 or later.
2626
2727You can also install Pop CLI using the [ Pop CLI GitHub repo] ( https://github.com/r0gue-io/pop-cli ) :
2828
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ edition.workspace = true
77readme = " README.md"
88repository.workspace = true
99version.workspace = true
10+ rust-version.workspace = true
1011
1112[dependencies ]
1213anyhow.workspace = true
Original file line number Diff line number Diff line change @@ -74,11 +74,6 @@ pub struct SharedParams {
7474 ) ]
7575 pub wasmtime_instantiation_strategy : WasmtimeInstantiationStrategy ,
7676
77- /// The number of 64KB pages to allocate for Wasm execution. Defaults to
78- /// [`sc_service::Configuration.default_heap_pages`].
79- #[ arg( long) ]
80- pub heap_pages : Option < u64 > ,
81-
8277 /// Path to a file to export the storage proof into (as a JSON).
8378 /// If several blocks are executed, the path is interpreted as a folder
8479 /// where one file per block will be written (named `{block_number}-{block_hash}`).
@@ -99,7 +94,6 @@ impl Default for SharedParams {
9994 disable_spec_name_check : false ,
10095 wasm_method : DEFAULT_WASM_EXECUTION_METHOD ,
10196 wasmtime_instantiation_strategy : DEFAULT_WASMTIME_INSTANTIATION_STRATEGY ,
102- heap_pages : None ,
10397 export_proof : None ,
10498 overwrite_state_version : None ,
10599 }
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ documentation.workspace = true
77license.workspace = true
88readme = " README.md"
99repository.workspace = true
10+ rust-version.workspace = true
1011
1112[lints .clippy ]
1213type_complexity = " allow"
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ version.workspace = true
66edition.workspace = true
77license.workspace = true
88repository.workspace = true
9+ rust-version.workspace = true
910
1011[dependencies ]
1112anyhow.workspace = true
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ name = "pop-contracts"
77readme = " README.md"
88repository.workspace = true
99version.workspace = true
10+ rust-version.workspace = true
1011
1112# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1213
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ edition.workspace = true
66license.workspace = true
77repository.workspace = true
88version.workspace = true
9+ rust-version.workspace = true
910
1011[dependencies ]
1112dirs = { workspace = true }
Original file line number Diff line number Diff line change 11[toolchain ]
2- channel = " 1.90 "
2+ channel = " 1.91 "
33components = [
44 " cargo" ,
55 " clippy" ,
You can’t perform that action at this time.
0 commit comments