Skip to content

Commit

Permalink
Release v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AurevoirXavier committed Dec 22, 2024
1 parent c5f22b5 commit 490307f
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 246 deletions.
35 changes: 4 additions & 31 deletions Cargo.lock

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

3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ edition = "2021"
homepage = "https://hack.ink/polkadot-runtime-releaser"
license = "GPL-3.0"
repository = "https://github.com/hack-ink/polkadot-runtime-releaser"
version = "0.1.0"
version = "0.1.1"

[workspace.dependencies]
# crates.io
Expand All @@ -32,7 +32,6 @@ sp-core = { version = "34.0" }
sp-maybe-compressed-blob = { version = "11.0" }
sp-state-machine = { version = "0.43" }
sp-version = { version = "37.0" }
subrpcer = { version = "0.11" }
thiserror = { version = "2.0" }
tokio = { version = "1.42" }
toml = { version = "0.8" }
Expand Down
6 changes: 0 additions & 6 deletions cli/src/cli.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
mod build;
use build::BuildCmd;

mod cmp;
use cmp::CmpCmd;

mod inspect;
use inspect::InspectCmd;

Expand Down Expand Up @@ -45,7 +42,6 @@ impl Run for Cli {
fn run(self) -> Result<()> {
match self.subcommand {
Subcommand::Build(cmd) => cmd.run(),
Subcommand::Cmp(cmd) => cmd.run(),
Subcommand::Inspect(cmd) => cmd.run(),
}
}
Expand All @@ -55,8 +51,6 @@ impl Run for Cli {
enum Subcommand {
/// Build the polkadot-sdk-based runtime.
Build(BuildCmd),
/// Compare the latest GitHub release's runtime version with the on-chain's.
Cmp(CmpCmd),
/// Inspect the WASM runtime.
Inspect(InspectCmd),
}
Expand Down
30 changes: 0 additions & 30 deletions cli/src/cli/cmp.rs

This file was deleted.

1 change: 0 additions & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ sp-core = { workspace = true }
sp-maybe-compressed-blob = { workspace = true }
sp-state-machine = { workspace = true }
sp-version = { workspace = true, features = ["serde"] }
subrpcer = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }

Expand Down
174 changes: 0 additions & 174 deletions lib/src/api.rs

This file was deleted.

1 change: 0 additions & 1 deletion lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

//! Polkadot Runtime Releaser library.
pub mod api;
pub mod docker;
pub mod error;
pub mod hasher;
Expand Down
1 change: 0 additions & 1 deletion lib/src/wasmer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ use std::{fs, path::Path};
// crates.io
use parity_scale_codec::Decode;
use sc_executor::WasmExecutor;
use serde::Serialize;
use sp_core::traits::ReadRuntimeVersion;
use sp_maybe_compressed_blob::CODE_BLOB_BOMB_LIMIT;
use sp_state_machine::BasicExternalities;
Expand Down

0 comments on commit 490307f

Please sign in to comment.