add subxt to subxt-signer default features

This commit is contained in:
Tadeo hepperle
2023-10-06 10:27:02 +02:00
parent 919b866c0f
commit 26b203dede
6 changed files with 8 additions and 9 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ edition = "2021"
[dependencies]
subxt = { path = "../../subxt" }
subxt-signer = { path = "../../signer", features = ["subxt"] }
subxt-signer = { path = "../../signer" }
futures = { version = "0.3.27", default-features = false, features = ["std"] }
tokio = { version = "1.28", features = ["macros", "time", "rt-multi-thread"] }
sp-core = "21.0.0"
+1 -1
View File
@@ -15,7 +15,7 @@ description = "Sign extrinsics to be submitted by Subxt"
keywords = ["parity", "subxt", "extrinsic", "signer"]
[features]
default = ["sr25519", "ecdsa"]
default = ["sr25519", "ecdsa", "subxt"]
# Pick the signer implementation(s) you need by enabling the
# corresponding features. Note: I had more difficulties getting
+3 -1
View File
@@ -1,3 +1,5 @@
# Subxt-signer
This library exposes a small, WASM compatible signer implementation which can be used in conjunction with Subxt to sign transactions.
This library exposes a small, WASM compatible signer implementation which can be used in conjunction with Subxt to sign transactions.
This library can be used without Subxt by disabling the `subxt` feature flag, which is enabled by default.
+1 -1
View File
@@ -103,7 +103,7 @@ sp-core = { workspace = true }
sp-keyring = { workspace = true }
sp-runtime = { workspace = true }
assert_matches = { workspace = true }
subxt-signer = { path = "../signer", features = ["subxt"] }
subxt-signer = { path = "../signer" }
# Tracing subscriber is useful for light-client examples to ensure that
# the `bootNodes` and chain spec are configured correctly. If all is fine, then
# the light-client wlll emit INFO logs with
+1 -1
View File
@@ -34,7 +34,7 @@ scale-info = { workspace = true, features = ["bit-vec"] }
sp-core = { workspace = true }
syn = { workspace = true }
subxt = { workspace = true, features = ["unstable-metadata", "native", "jsonrpsee", "substrate-compat"] }
subxt-signer = { workspace = true, features = ["subxt"] }
subxt-signer = { workspace = true }
subxt-codegen = { workspace = true }
subxt-metadata = { workspace = true }
test-runtime = { workspace = true }
+1 -4
View File
@@ -13,10 +13,7 @@ trybuild = { workspace = true }
hex = { workspace = true }
scale-info = { workspace = true, features = ["bit-vec"] }
frame-metadata = { workspace = true }
codec = { package = "parity-scale-codec", workspace = true, features = [
"derive",
"bit-vec",
] }
codec = { package = "parity-scale-codec", workspace = true, features = ["derive", "bit-vec"] }
subxt = { workspace = true, features = ["native", "jsonrpsee"] }
subxt-metadata = { workspace = true }
generate-custom-metadata = { path = "../generate-custom-metadata" }