mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 01:11:10 +00:00
Simpler dependencies (#353)
* Don't re-export sp-arithmetic Add sp-arithmetic to dev-dependencies Don't use any default features * Update Cargo.toml Co-authored-by: Niklas Adolfsson <niklasadolfsson1@gmail.com> * Update Cargo.toml Co-authored-by: Niklas Adolfsson <niklasadolfsson1@gmail.com> * Update Cargo.toml Co-authored-by: Niklas Adolfsson <niklasadolfsson1@gmail.com> Co-authored-by: Niklas Adolfsson <niklasadolfsson1@gmail.com>
This commit is contained in:
+3
-4
@@ -34,14 +34,14 @@ url = "2.2.1"
|
|||||||
|
|
||||||
subxt-macro = { version = "0.1.0", path = "macro" }
|
subxt-macro = { version = "0.1.0", path = "macro" }
|
||||||
|
|
||||||
sp-arithmetic = { package = "sp-arithmetic", git = "https://github.com/paritytech/substrate/", branch = "master" }
|
sp-core = { git = "https://github.com/paritytech/substrate/", branch = "master", default-features = false }
|
||||||
sp-core = { package = "sp-core", git = "https://github.com/paritytech/substrate/", branch = "master" }
|
sp-runtime = { git = "https://github.com/paritytech/substrate/", branch = "master", default-features = false }
|
||||||
sp-runtime = { package = "sp-runtime", git = "https://github.com/paritytech/substrate/", branch = "master" }
|
|
||||||
sp-version = { package = "sp-version", git = "https://github.com/paritytech/substrate/", branch = "master" }
|
sp-version = { package = "sp-version", git = "https://github.com/paritytech/substrate/", branch = "master" }
|
||||||
|
|
||||||
frame-metadata = "14.0.0"
|
frame-metadata = "14.0.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
sp-arithmetic = { git = "https://github.com/paritytech/substrate/", branch = "master", default-features = false }
|
||||||
assert_matches = "1.5.0"
|
assert_matches = "1.5.0"
|
||||||
async-std = { version = "1.9.0", features = ["attributes", "tokio1"] }
|
async-std = { version = "1.9.0", features = ["attributes", "tokio1"] }
|
||||||
env_logger = "0.8.3"
|
env_logger = "0.8.3"
|
||||||
@@ -51,4 +51,3 @@ which = "4.0.2"
|
|||||||
test-runtime = { path = "test-runtime" }
|
test-runtime = { path = "test-runtime" }
|
||||||
|
|
||||||
sp-keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate/", branch = "master" }
|
sp-keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate/", branch = "master" }
|
||||||
|
|
||||||
|
|||||||
@@ -45,7 +45,6 @@ pub use subxt_macro::subxt;
|
|||||||
|
|
||||||
pub use bitvec;
|
pub use bitvec;
|
||||||
pub use codec;
|
pub use codec;
|
||||||
pub use sp_arithmetic;
|
|
||||||
pub use sp_core;
|
pub use sp_core;
|
||||||
pub use sp_runtime;
|
pub use sp_runtime;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user