-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* it's compiling fix tests update ci cargo fmt fix compile error fix clippy remove compile error and ensure jsonrpsee is only exported when not sync api clean up dependencies move keystore_tests.rs to sync examples update .lock remove unneeded deps clean up sync example toml clean up async example toml remove sync part from async exmaple speed up example add box around dynamic error values readd spacing use async code smart speed up example make author_test actually async add sleep add some sleeps to avoid future error remove obsolete async naming update README update README update CI * simplify author_test
- Loading branch information
Showing
45 changed files
with
639 additions
and
642 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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,42 +1,29 @@ | ||
[package] | ||
name = "ac-testing" | ||
version = "0.3.2" | ||
authors = ["Supercomputing Systems AG <info@scs.ch>"] | ||
name = "ac-examples-async" | ||
version = "0.4.2" | ||
license = "Apache-2.0" | ||
edition = "2021" | ||
|
||
[dev-dependencies] | ||
codec = { package = "parity-scale-codec", version = "3.6.1", features = [ | ||
'derive', | ||
] } | ||
serde_json = { version = "1.0.79" } | ||
codec = { package = "parity-scale-codec", version = "3.6.1", features = ['derive'] } | ||
env_logger = "0.10.0" | ||
log = "0.4.14" | ||
serde_json = "1.0.79" | ||
tokio = { version = "1.24", features = ["rt-multi-thread", "macros", "time"] } | ||
tokio-util = "0.7.8" | ||
wabt = "0.10.0" | ||
|
||
# Substrate dependencies | ||
frame-support = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" } | ||
frame-system = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" } | ||
kitchensink-runtime = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" } | ||
sp-application-crypto = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" } | ||
sp-core = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" } | ||
sp-keyring = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" } | ||
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" } | ||
sp-staking = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" } | ||
sp-version = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" } | ||
pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" } | ||
pallet-identity = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" } | ||
pallet-staking = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" } | ||
sp-core = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" } | ||
sp-keyring = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" } | ||
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" } | ||
sp-weights = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" } | ||
|
||
# local deps | ||
substrate-api-client = { path = "..", features = [ | ||
"tungstenite-client", | ||
"ws-client", | ||
"staking-xt", | ||
"contracts-xt", | ||
] } | ||
substrate-client-keystore = { path = "../client-keystore" } | ||
|
||
|
||
[features] | ||
default = ["ws-client"] | ||
ws-client = [] | ||
substrate-api-client = { path = "../..", features = ["staking-xt", "contracts-xt"] } |
Oops, something went wrong.