Skip to content
This repository has been archived by the owner on May 15, 2024. It is now read-only.

Commit

Permalink
Release 0.1.24 (#358)
Browse files Browse the repository at this point in the history
* Adjustments to deps
  • Loading branch information
DidacSF authored Oct 19, 2023
1 parent 074d568 commit 8851aa4
Show file tree
Hide file tree
Showing 8 changed files with 43 additions and 24 deletions.
24 changes: 12 additions & 12 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ members = [
# General
clap = { version = "4.4.6", default-features = false }
futures = { version = "0.3.28", default-features = false }
hex-literal = { version = "0.4.1" }
hex-literal = { version = "0.4.1", default-features = false }
hex = { version = "0.4.3", default-features = false }
jsonrpsee = { version = "0.16.3", default-features = false }
log = { version = "0.4.17", default-features = false }
parking_lot = { version = "0.12.1" }
parking_lot = { version = "0.12.1", default-features = false }
serde = { version = "1.0.56", default-features = false }
smallvec = { version = "1.11.1" }
smallvec = { version = "1.11.1", default-features = false }

# Parity codec
parity-scale-codec = { version = "3.0.0", default-features = false }
Expand Down Expand Up @@ -157,9 +157,9 @@ ajuna-rpc = { path = "rpc", default-features = false }
ajuna-service = { path = "node/service", default-features = false }

# Ajun runtime
ajuna-runtime = { path = "runtime/ajuna", default-features = false }
ajuna-solo-runtime = { path = "runtime/solo", default-features = false }
bajun-runtime = { path = "runtime/bajun", default-features = false }
ajuna-runtime = { path = "runtime/ajuna" }
ajuna-solo-runtime = { path = "runtime/solo" }
bajun-runtime = { path = "runtime/bajun" }
# Ajuna Pallets
pallet-ajuna-awesome-avatars = { path = "pallets/ajuna-awesome-avatars", default-features = false }
pallet-ajuna-awesome-avatars-benchmarking = { path = "pallets/ajuna-awesome-avatars/benchmarking", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion node/cli/src/para/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>.

#![allow(deprecated)]
#![allow(unreachable_code)]

use crate::para::cli::{Cli, RelayChainCli, Subcommand};
use ajuna_primitives::Block;
Expand Down Expand Up @@ -233,7 +234,6 @@ pub fn run() -> Result<()> {
return cmd.run::<Block>(&*config.chain_spec, &*partials.client)
}
#[cfg(feature = "bajun")]
#[allow(unreachable_code)]
{
let partials =
service::new_partial::<BajunRuntimeApi, BajunRuntimeExecutor>(&config)?;
Expand Down
3 changes: 2 additions & 1 deletion node/service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ sc-consensus-aura = { workspace = true }
sc-consensus-grandpa = { workspace = true }
sc-executor = { workspace = true }
sc-keystore = { workspace = true }
sc-network = { workspace = true }
sc-offchain = { workspace = true }
sc-service = { workspace = true }
sc-telemetry = { workspace = true }
Expand All @@ -38,6 +37,7 @@ sp-runtime = { workspace = true }
sp-timestamp = { workspace = true }

pallet-transaction-payment-rpc = { workspace = true, optional = true }
sc-network = { workspace = true, optional = true }
sc-network-sync = { workspace = true, optional = true }
sc-rpc = { workspace = true, optional = true }
sc-sysinfo = { workspace = true, optional = true }
Expand Down Expand Up @@ -84,6 +84,7 @@ ajuna = [ "ajuna-runtime", "para" ]
bajun = [ "bajun-runtime", "para" ]
para = [
"pallet-transaction-payment-rpc",
"sc-network",
"sc-network-sync",
"sc-rpc",
"sc-sysinfo",
Expand Down
2 changes: 1 addition & 1 deletion runtime/ajuna/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ std = [
"parity-scale-codec/std",
"log/std",
"scale-info/std",
"serde",
"serde/std",
"ajuna-primitives/std",
"cumulus-pallet-aura-ext/std",
"cumulus-pallet-dmp-queue/std",
Expand Down
2 changes: 1 addition & 1 deletion runtime/bajun/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ std = [
"parity-scale-codec/std",
"log/std",
"scale-info/std",
"serde",
"serde/std",
"ajuna-primitives/std",
"cumulus-pallet-aura-ext/std",
"cumulus-pallet-dmp-queue/std",
Expand Down
20 changes: 18 additions & 2 deletions runtime/solo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,18 +78,34 @@ pallet-ajuna-nft-transfer = { workspace = true }
[features]
default = [ "std" ]
runtime-benchmarks = [
"ajuna-primitives/runtime-benchmarks",
"frame-benchmarking/runtime-benchmarks",
"frame-support/runtime-benchmarks",
"frame-system-benchmarking/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"hex-literal",
"pallet-asset-tx-payment/runtime-benchmarks",
"pallet-assets/runtime-benchmarks",
"pallet-balances/runtime-benchmarks",
"pallet-collective/runtime-benchmarks",
"pallet-democracy/runtime-benchmarks",
"pallet-grandpa/runtime-benchmarks",
"pallet-identity/runtime-benchmarks",
"pallet-membership/runtime-benchmarks",
"pallet-multisig/runtime-benchmarks",
"pallet-nfts/runtime-benchmarks",
"pallet-ajuna-nft-staking/runtime-benchmarks",
"pallet-preimage/runtime-benchmarks",
"pallet-proxy/runtime-benchmarks",
"pallet-scheduler/runtime-benchmarks",
"pallet-sudo/runtime-benchmarks",
"pallet-timestamp/runtime-benchmarks",
"pallet-treasury/runtime-benchmarks",
"pallet-utility/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
"orml-vesting/runtime-benchmarks",
"ajuna-primitives/runtime-benchmarks",
"pallet-ajuna-nft-staking/runtime-benchmarks",
"pallet-asset-tx-payment/runtime-benchmarks",
"pallet-timestamp/runtime-benchmarks",
]
std = [
"log/std",
Expand Down
2 changes: 2 additions & 0 deletions runtime/solo/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,8 @@ impl pallet_assets::Config for Runtime {
type Extra = ();
type CallbackHandle = ();
type WeightInfo = pallet_assets::weights::SubstrateWeight<Runtime>;
#[cfg(feature = "runtime-benchmarks")]
type BenchmarkHelper = ();
}

type BalanceToAssetConverter = BalanceToAssetBalance<Balances, Runtime, OneToOneConversion>;
Expand Down

0 comments on commit 8851aa4

Please sign in to comment.