-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Switch Cosmos package dependencies from crate to workspace (#120)
* chore: Change cosmos-rpc dependency from crate to workspace * chore: Change cosmos-runtime-api dependency from crate to workspace * chore: Update package info to use workspace values * chore: Switch pallet-cosmos-types dependencies from crate to workspace * chore: Update Cosmos package licenses to Apache-2.0 * feat: Integrate nostd crate for no_std environment support * chore: Switch pallet-cosmos-x-auth-migrations dependencies from crate to workspace * chore: Switch pallet-cosmos-x-auth-signing dependencies from crate to workspace * chore: Switch pallet-cosmos-x-auth dependencies from crate to workspace * chore: Switch pallet-cosmos-x-bank-types dependencies from crate to workspace * chore: Switch pallet-cosmos-x-bank dependencies from crate to workspace * chore: Switch pallet-cosmos-x-wasm-types dependencies from crate to workspace * chore: Switch pallet-cosmos-x-wasm dependencies from crate to workspace * chore: Downgrade cosmwasm-std feature version to align with Composable * refactor: Introduce nostd crate to np-crypto to enhance no_std development experience * refactor: Switch hex encoding to const-hex * refactor: Replace core2::io to nostd::io
- Loading branch information
Showing
52 changed files
with
214 additions
and
223 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,19 @@ | ||
[package] | ||
name = "cosmos-rpc" | ||
version = "0.4.0" | ||
authors = ["Haderech Pte. Ltd."] | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
repository = "https://github.com/noirhq/noir.git" | ||
authors = { workspace = true } | ||
version = { workspace = true } | ||
edition = { workspace = true } | ||
repository = { workspace = true } | ||
publish = false | ||
|
||
[dependencies] | ||
cosmos-runtime-api = { workspace = true, features = ["std"] } | ||
futures = "0.3" | ||
hex = "0.4.3" | ||
jsonrpsee = { version = "0.24", features = ["client", "server", "macros"] } | ||
futures = { workspace = true } | ||
jsonrpsee = { workspace = true, features = ["client", "server", "macros"] } | ||
pallet-cosmos-types = { workspace = true, features = ["std"] } | ||
sc-transaction-pool-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2409" } | ||
sp-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2409" } | ||
sp-blockchain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2409" } | ||
sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2409" } | ||
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2409" } | ||
sc-transaction-pool-api = { workspace = true } | ||
sp-api = { workspace = true, features = ["std"] } | ||
sp-blockchain = { workspace = true } | ||
sp-core = { workspace = true, features = ["std"] } | ||
sp-runtime = { workspace = true, features = ["std"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
|
||
pub mod traits; | ||
|
||
use alloc::{ | ||
use nostd::{ | ||
string::{String, ToString}, | ||
vec::Vec, | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.