Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ description = "The LAOS parachain node."
repository = "https://github.com/freeverseio/laos.git"
homepage = "https://www.laosfoundation.io"
authors = ["Freeverse"]
version = "0.9.0"

[workspace]
resolver = "2"
Expand Down
2 changes: 1 addition & 1 deletion ownership-chain/node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "laos-ownership"
version = "0.1.0"
edition = "2021"
authors = { workspace = true }
version = { workspace = true }
build = "build.rs"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion ownership-chain/node/src/rpc/eth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use sp_consensus_aura::{sr25519::AuthorityId as AuraId, AuraApi};
use sp_core::H256;
use sp_runtime::traits::Block as BlockT;
// Frontier
pub use fc_rpc::{EthBlockDataCacheTask, EthConfig, OverrideHandle, StorageOverride};
pub use fc_rpc::{EthBlockDataCacheTask, EthConfig, OverrideHandle};
#[cfg(feature = "txpool")]
use fc_rpc::{TxPool, TxPoolApiServer};
pub use fc_rpc_core::types::{FeeHistoryCache, FeeHistoryCacheLimit, FilterPool};
Expand Down
2 changes: 1 addition & 1 deletion ownership-chain/pallets/laos-evolution/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pallet-laos-evolution"
version = "4.0.0-dev"
version = { workspace = true }
homepage = "https://freeverse.io"
edition = "2021"
license = "MIT-0"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pallet-evm-evolution-collection-factory"
version = "2.0.0-dev"
version = { workspace = true }
description = "Evolution collection factory precompile"
repository = "https://github.com/freeverseio/laos"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion ownership-chain/precompile/evolution-collection/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pallet-evm-evolution-collection"
version = "2.0.0-dev"
version = { workspace = true }
description = "Collection evolver and minter precompile"
repository = "https://github.com/freeverseio/laos"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion ownership-chain/precompile/utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "laos-precompile-utils"
authors = ["StakeTechnologies", "PureStake"]
description = "Utils to write EVM precompiles."
version = "0.4.3"
version = { workspace = true }
edition = "2021"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions ownership-chain/precompile/utils/macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "laos-precompile-utils-macro"
authors = ["StakeTechnologies", "PureStake"]
description = ""
version = "0.1.0"
description = "Precompile macro utilities"
version = { workspace = true }
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion ownership-chain/primitives/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ownership-parachain-primitives"
description = "Primitives of Ownership parachain runtime."
version = "0.1.0"
version = { workspace = true }
authors = ["Freeverse"]
edition = "2021"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
Expand Down
2 changes: 1 addition & 1 deletion ownership-chain/runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "laos-ownership-runtime"
version = "0.1.0"
edition = "2021"
version = { workspace = true }

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
Expand Down
2 changes: 0 additions & 2 deletions ownership-chain/runtime/src/weights/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,5 @@ pub mod extrinsic_weights;
pub mod paritydb_weights;
pub mod rocksdb_weights;

pub use block_weights::constants::BlockExecutionWeight;
pub use extrinsic_weights::constants::ExtrinsicBaseWeight;
pub use paritydb_weights::constants::ParityDbWeight;
pub use rocksdb_weights::constants::RocksDbWeight;