-
Notifications
You must be signed in to change notification settings - Fork 262
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move all deps to workspace toml (#932)
* Move all deps to workspace toml * cargo fmt and codec 3.4, removing now unneeded 'full' feature * add wasm-tests to workspace and fix subxt inheritng * cargo fmt * wasm-test thing can't be in workspace so revert that * remove unwanted target dir from wasm-tests
- Loading branch information
Showing
18 changed files
with
2,276 additions
and
190 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,14 +11,79 @@ members = [ | |
"metadata", | ||
"subxt" | ||
] | ||
|
||
# This cannot be a workspace dependency, because it requires | ||
# mutually exclusive jsonrpsee features to work, and workspaces | ||
# will aggregate features used across crates: | ||
exclude = ["testing/wasm-tests"] | ||
resolver = "2" | ||
|
||
[workspace.package] | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
version = "0.28.0" | ||
rust-version = "1.64.0" | ||
license = "Apache-2.0 OR GPL-3.0" | ||
repository = "https://github.com/paritytech/subxt" | ||
documentation = "https://docs.rs/subxt" | ||
homepage = "https://www.parity.io/" | ||
|
||
[workspace.dependencies] | ||
assert_matches = "1.5.0" | ||
base58 = { version = "0.2.0" } | ||
bitvec = { version = "1", default-features = false } | ||
blake2 = { version = "0.10.4", default-features = false } | ||
clap = { version = "4.2.4", features = ["derive", "cargo"] } | ||
criterion = "0.4" | ||
codec = { package = "parity-scale-codec", version = "3.4.0", default-features = false } | ||
color-eyre = "0.6.1" | ||
console_error_panic_hook = "0.1.7" | ||
darling = "0.14.4" | ||
derivative = "2.2.0" | ||
either = "1.8.1" | ||
frame-metadata = { version = "15.1.0", features = ["v14", "v15-unstable", "std"] } | ||
futures = { version = "0.3.27", default-features = false, features = ["std"] } | ||
getrandom = "0.2" | ||
hex = "0.4.3" | ||
heck = "0.4.1" | ||
impl-serde = { version = "0.4.0" } | ||
jsonrpsee = { version = "0.16" } | ||
parking_lot = "0.12.0" | ||
pretty_assertions = "1.0.0" | ||
primitive-types = { version = "0.12.1", default-features = false, features = ["codec", "scale-info", "serde"] } | ||
proc-macro2 = "1.0.55" | ||
quote = "1.0.8" | ||
regex = "1.8.1" | ||
scale-info = "2.5.0" | ||
scale-value = "0.7.0" | ||
scale-bits = "0.3" | ||
scale-decode = "0.5.0" | ||
scale-encode = "0.1.0" | ||
serde = { version = "1.0.159" } | ||
serde_json = { version = "1.0.96" } | ||
syn = "1.0.109" | ||
thiserror = "1.0.40" | ||
tokio = { version = "1.27", features = ["macros", "time", "rt-multi-thread"] } | ||
tracing = "0.1.34" | ||
tracing-wasm = "0.2.1" | ||
tracing-subscriber = "0.3.17" | ||
trybuild = "1.0.79" | ||
proc-macro-error = "1.0.4" | ||
wabt = "0.10.0" | ||
wasm-bindgen-test = "0.3.24" | ||
which = "4.4.0" | ||
|
||
# Substrate crates: | ||
sp-core = { version = "20.0.0", default-features = false } | ||
sp-core-hashing = "8.0.0" | ||
sp-keyring = "23.0.0" | ||
sp-runtime = "23.0.0" | ||
sp-version = "21.0.0" | ||
|
||
# Subxt workspace crates: | ||
subxt = { version = "0.28.0", path = "subxt" } | ||
subxt-macro = { version = "0.28.0", path = "macro" } | ||
subxt-metadata = { version = "0.28.0", path = "metadata" } | ||
subxt-codegen = { version = "0.28.0", path = "codegen" } | ||
test-runtime = { path = "testing/test-runtime" } | ||
substrate-runner = { path = "testing/substrate-runner" } |
Oops, something went wrong.