Skip to content
Snippets Groups Projects
Commit eef3531f authored by jrx's avatar jrx Committed by Hugo Trentesaux
Browse files

live tests using workspace dependencies

parent eae255d1
No related branches found
No related tags found
1 merge request!131Draft: (paused) Use workspace for Cargo.toml files
...@@ -45,6 +45,8 @@ substrate-build-script-utils = { git = 'https://github.com/duniter/substrate', b ...@@ -45,6 +45,8 @@ substrate-build-script-utils = { git = 'https://github.com/duniter/substrate', b
babe = { package = "sc-consensus-babe", git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" } babe = { package = "sc-consensus-babe", git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
manual-seal = { package = "sc-consensus-manual-seal", git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" } manual-seal = { package = "sc-consensus-manual-seal", git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
subxt = { git = 'https://github.com/duniter/subxt', branch = 'duniter-substrate-v0.9.32' }
frame-benchmarking = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32' } frame-benchmarking = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32' }
frame-try-runtime = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false } frame-try-runtime = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false }
frame-executive = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false } frame-executive = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false }
...@@ -120,6 +122,8 @@ sp-trie = { git = "https://github.com/duniter/substrate", branch = "duniter-subs ...@@ -120,6 +122,8 @@ sp-trie = { git = "https://github.com/duniter/substrate", branch = "duniter-subs
#=============================================================================== #===============================================================================
# crate.io dependencies # crate.io dependencies
#=============================================================================== #===============================================================================
anyhow = "1.0"
tokio = { version = "1.15.0", features = ["macros"] }
async-io = "1.3" async-io = "1.3"
clap = { version = "4.0", features = ["derive"] } clap = { version = "4.0", features = ["derive"] }
clap_complete = { version = "4" } clap_complete = { version = "4" }
...@@ -133,9 +137,14 @@ memmap2 = "0.5.0" ...@@ -133,9 +137,14 @@ memmap2 = "0.5.0"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.64" serde_json = "1.0.64"
tracing-core = "0.1.28" tracing-core = "0.1.28"
# WHY TWICE THE SAME PACKAGE WITH DIFFERENT NAMES ?
codec = { package = "parity-scale-codec", version = "3.1.5", features = [ codec = { package = "parity-scale-codec", version = "3.1.5", features = [
"derive", "derive",
], default-features = false } ], default-features = false }
parity-scale-codec = "3.1.5"
# WHY ??
hex-literal = { version = '0.3.1' } hex-literal = { version = '0.3.1' }
scale-info = { version = "2.1.1", default-features = false, features = [ scale-info = { version = "2.1.1", default-features = false, features = [
"derive", "derive",
......
...@@ -10,9 +10,9 @@ homepage.workspace = true ...@@ -10,9 +10,9 @@ homepage.workspace = true
version.workspace = true version.workspace = true
[dev-dependencies] [dev-dependencies]
anyhow = "1.0" anyhow = { workspace = true }
hex-literal = "0.3" hex-literal = { workspace = true }
parity-scale-codec = "3.1.5" parity-scale-codec = { workspace = true }
sp-core = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32' } sp-core = { workspace = true }
subxt = { git = 'https://github.com/duniter/subxt', branch = 'duniter-substrate-v0.9.32' } subxt = { workspace = true }
tokio = { version = "1.15.0", features = ["macros"] } tokio = { workspace = true }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment