forked from paritytech/desub
-
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.
Update dependencies and get things compiling/passing CI again. (parit…
…ytech#115) * update deps and cargo check --all-targets working * Get compiling with scale-value and scale-decode * fix desub-current tests * clippy and fmt * workspace-ify all library deps. clap instead of structopt * fmt * doc
- Loading branch information
Showing
41 changed files
with
2,802 additions
and
4,818 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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 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,13 +1,19 @@ | ||
[package] | ||
name = "v14-test" | ||
version = "0.1.0" | ||
edition = "2021" | ||
version.workspace = true | ||
authors.workspace = true | ||
license.workspace = true | ||
homepage.workspace = true | ||
repository.workspace = true | ||
description.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
structopt = "0.3.23" | ||
desub-current = { path = "../../desub-current" } | ||
anyhow = "1.0.44" | ||
hex = "0.4.3" | ||
pretty_env_logger = "0.4.0" | ||
clap = { workspace = true, features = ["derive"] } | ||
desub-current = { workspace = true } | ||
anyhow = { workspace = true } | ||
hex = { workspace = true } | ||
pretty_env_logger = { workspace = true } |
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,18 +1,18 @@ | ||
[package] | ||
name = "desub-common" | ||
version = "0.1.0" | ||
authors = ["Parity Technologies <admin@parity.io>"] | ||
license = "GPL-3.0" | ||
homepage = "https://substrate.dev" | ||
repository = "https://github.com/paritytech/desub/" | ||
description = "Decode Substrate with Backwards-Compatible Metadata" | ||
readme = "README.md" | ||
edition = "2021" | ||
version.workspace = true | ||
authors.workspace = true | ||
license.workspace = true | ||
homepage.workspace = true | ||
repository.workspace = true | ||
description.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
serde = { version = "1", features = [ "derive" ] } | ||
serde = { workspace = true, features = [ "derive" ] } | ||
|
||
sp-runtime = "4.0.0" | ||
sp-core = "4.0.0" | ||
sp-runtime = { workspace = true } | ||
sp-core = { workspace = true } |
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,31 +1,33 @@ | ||
[package] | ||
name = "desub-current" | ||
version = "0.1.0" | ||
authors = ["Parity Technologies <admin@parity.io>"] | ||
license = "GPL-3.0" | ||
homepage = "https://substrate.dev" | ||
repository = "https://github.com/paritytech/desub/" | ||
description = "Decode Substrate with Backwards-Compatible Metadata" | ||
edition = "2021" | ||
version.workspace = true | ||
authors.workspace = true | ||
license.workspace = true | ||
homepage.workspace = true | ||
repository.workspace = true | ||
description.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
log = "0.4" | ||
thiserror = "1.0.30" | ||
frame-metadata = { version = "14.2", features = ["v14", "std", "scale-info"] } | ||
serde = { version = "1", features = ["derive"] } | ||
serde_json = { version = "1", features = ["preserve_order"] } | ||
codec = { version = "2", package = "parity-scale-codec", features = ["bit-vec"] } | ||
hex = "0.4.3" | ||
derive_more = "0.99.16" | ||
scale-info = { version = "1.0.0", features = ["bit-vec", "derive"] } | ||
bitvec = { version = "0.20.2", features = ["serde", "alloc"] } | ||
desub-common = { version = "0.1.0", path = "../desub-common" } | ||
log = { workspace = true } | ||
thiserror = { workspace = true } | ||
frame-metadata = { workspace = true, features = ["std", "scale-info"] } | ||
serde = { workspace = true, features = ["derive"] } | ||
serde_json = { workspace = true, features = ["preserve_order"] } | ||
parity-scale-codec = { workspace = true, features = ["bit-vec"] } | ||
hex = { workspace = true } | ||
derive_more = { workspace = true } | ||
scale-info = { workspace = true, features = ["bit-vec", "derive"] } | ||
bitvec = { workspace = true, features = ["serde", "alloc"] } | ||
desub-common = { workspace = true } | ||
scale-value = { workspace = true } | ||
scale-decode = { workspace = true } | ||
|
||
sp-core = "4.0.0" | ||
sp-runtime = "4.0.0" | ||
sp-core = { workspace = true } | ||
sp-runtime = { workspace = true } | ||
|
||
[dev-dependencies] | ||
serde_json = "1" | ||
sp_keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", tag = "monthly-2021-12" } | ||
sp-keyring = { workspace = true } |
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.