diff --git a/Cargo.toml b/Cargo.toml
index 7033f0bdcc883096e80a8b4a426006514764f18e..ddede94b56d167b297a028f2c5abfe6e6d52b2ab 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,137 +1,22 @@
-[package]
-authors = ['Axiom-Team Developers <https://axiom-team.fr>']
-build = 'node/build.rs'
-description = 'Crypto-currency software (based on Substrate framework) to operate Äž1 libre currency'
+[workspace.package]
 edition = "2021"
-homepage = 'https://duniter.org'
+authors = ["Axiom-Team Developers <https://axiom-team.fr>"]
+description = "Crypto-currency software (based on Substrate framework) to operate Äž1 libre currency"
 license = 'AGPL-3.0'
-name = 'duniter'
 repository = 'https://git.duniter.org/nodes/rust/duniter-v2s'
-version = '0.3.0'
-
-[package.metadata.docs.rs]
-targets = ['x86_64-unknown-linux-gnu']
-
-[[bin]]
-bench = false
-name = 'duniter'
-path = "node/src/main.rs"
-
-[features]
-default = ["gdev"]
-g1 = ["g1-runtime"]
-gdev = ["gdev-runtime"]
-gtest = ["gtest-runtime"]
-runtime-benchmarks = [
-    #'g1-runtime',
-    #'g1-runtime/runtime-benchmarks',
-    'gdev-runtime',
-    'gdev-runtime/runtime-benchmarks',
-    #'gtest-runtime',
-    #'gtest-runtime/runtime-benchmarks',
-    'sc-client-db/runtime-benchmarks',
-]
-try-runtime = [
-	#"g1-runtime/try-runtime",
-	"gdev-runtime/try-runtime",
-	#"gtest-runtime/try-runtime",
-	"try-runtime-cli"
-]
-
-[build-dependencies]
-clap = { version = "4.0" }
-#clap_complete = { version = "4.0" }
-substrate-build-script-utils = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32' }
-
-[dev-dependencies]
-rusty-hook = "^0.11.2"
-
-# Dependencies for specific targets
-[target.'cfg(any(target_arch="x86_64", target_arch="aarch64"))'.dependencies]
-sc-cli = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32", default-features = false, features = ["wasmtime"] }
-sc-service = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32", default-features = false, features = ["wasmtime"] }
-sp-trie = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32", features = ["memory-tracker"] }
-
-
-[dependencies]
-# local dependencies
-common-runtime = { path = 'runtime/common' }
-g1-runtime = { path = 'runtime/g1', optional = true }
-gdev-runtime = { path = 'runtime/gdev', optional = true }
-gtest-runtime = { path = 'runtime/gtest', optional = true }
-pallet-certification = { path = 'pallets/certification' }
-pallet-oneshot-account = { path = 'pallets/oneshot-account' }
-sp-membership = { path = 'primitives/membership' }
-
-# crates.io dependencies
-async-io = "1.3"
-clap = { version = "4.0", features = ["derive"] }
-clap_complete = { version = "4" }
-futures = { version = "0.3.1", features = ["compat"] }
-hex = "0.4.3"
-jsonrpsee = { version = "0.15.1", features = ["server"] }
-lazy_static = "1.4.0"
-log = "0.4"
-maplit = '1.0.2'
-memmap2 = "0.5.0"
-serde = "1.0"
-serde_json = "1.0.64"
-tracing-core = "0.1.28"
-
-# substrate dependencies
-frame-benchmarking = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-frame-benchmarking-cli = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-frame-system = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32", default-features = false }
-pallet-grandpa = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-pallet-transaction-payment = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32", default-features = false }
-pallet-transaction-payment-rpc = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sc-basic-authorship = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sc-chain-spec = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sc-cli = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32", default-features = false }
-sc-client-api = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sc-consensus = { 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" }
-sc-client-db = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32", default-features = false }
-sc-consensus-uncles = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sc-executor = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sc-finality-grandpa = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sc-keystore = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sc-network = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sc-rpc-api = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sc-service = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32", default-features = false }
-sc-telemetry = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sc-transaction-pool = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sc-transaction-pool-api = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sp-api = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sp-authority-discovery = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sp-block-builder = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sp-blockchain = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sp-consensus = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sp-consensus-babe = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sp-core = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sp-finality-grandpa = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sp-inherents = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sp-io = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sp-offchain = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sp-keyring = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sp-keystore = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sp-runtime = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sp-session = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sp-storage = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sp-timestamp = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sp-transaction-pool = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-sp-trie = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-substrate-frame-rpc-system = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
-try-runtime-cli = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32", optional = true }
+documentation = "https://example.com/bar"
+homepage = 'https://duniter.org'
+version = "0.3.0"
 
 [workspace]
 resolver = "2"
 
 members = [
+    "node",
+
     'end2end-tests',
     'live-tests',
+    
     'pallets/certification',
     'pallets/duniter-test-parameters',
     'pallets/duniter-test-parameters/macro',
@@ -142,141 +27,19 @@ members = [
     'pallets/authority-members',
     'pallets/universal-dividend',
     'pallets/upgrade-origin',
+    
     'primitives/membership',
+    
     'runtime/common',
-    'runtime/gdev',
+    "runtime/gdev",
+
+    # "runtime/g1",
+    # "runtime/gtest",
     'xtask',
 ]
 
-# The list of dependencies below (which can be both direct and indirect dependencies) are crates
-# that are suspected to be CPU-intensive, and that are unlikely to require debugging (as some of
-# their debug info might be missing) or to require to be frequently recompiled. We compile these
-# dependencies with `opt-level=3` even in "dev" mode in order to make "dev" mode more usable.
-# The majority of these crates are cryptographic libraries.
-#
-# This list is only relevant when running `cargo build` from within
-# the Duniter-v2s workspace.
-#
-# If you see an error mentioning "profile package spec ... did not match any packages", it
-# probably concerns this list.
-#
-# This list is ordered alphabetically.
-[profile.dev.package]
-blake2 = { opt-level = 3 }
-blake2-rfc = { opt-level = 3 }
-blake2b_simd = { opt-level = 3 }
-chacha20poly1305 = { opt-level = 3 }
-cranelift-codegen = { opt-level = 3 }
-cranelift-wasm = { opt-level = 3 }
-crc32fast = { opt-level = 3 }
-crossbeam-deque = { opt-level = 3 }
-crypto-mac = { opt-level = 3 }
-curve25519-dalek = { opt-level = 3 }
-ed25519-dalek = { opt-level = 3 }
-flate2 = { opt-level = 3 }
-futures-channel = { opt-level = 3 }
-hashbrown = { opt-level = 3 }
-hash-db = { opt-level = 3 }
-hmac = { opt-level = 3 }
-httparse = { opt-level = 3 }
-integer-sqrt = { opt-level = 3 }
-keccak = { opt-level = 3 }
-libm = { opt-level = 3 }
-libsecp256k1 = { opt-level = 3 }
-libz-sys = { opt-level = 3 }
-mio = { opt-level = 3 }
-nalgebra = { opt-level = 3 }
-num-bigint = { opt-level = 3 }
-parking_lot = { opt-level = 3 }
-parking_lot_core = { opt-level = 3 }
-percent-encoding = { opt-level = 3 }
-primitive-types = { opt-level = 3 }
-ring = { opt-level = 3 }
-rustls = { opt-level = 3 }
-sha2 = { opt-level = 3 }
-sha3 = { opt-level = 3 }
-smallvec = { opt-level = 3 }
-snow = { opt-level = 3 }
-twox-hash = { opt-level = 3 }
-uint = { opt-level = 3 }
-wasmi = { opt-level = 3 }
-x25519-dalek = { opt-level = 3 }
-yamux = { opt-level = 3 }
-zeroize = { opt-level = 3 }
-
 [profile.release]
-# Substrate runtime requires unwinding.
 panic = "unwind"
 
-[patch.crates-io]
-
-#[patch."https://github.com/duniter/substrate"]
-#fork-tree = { path = "../substrate/utils/fork-tree" }
-#frame-support = { path = "../substrate/frame/support" }
-#frame-support-procedural = { path = "../substrate/frame/support/procedural" }
-#frame-support-procedural-tools = { path = "../substrate/frame/support/procedural/tools" }
-#frame-system = { path = "../substrate/frame/system" }
-#frame-benchmarking = { path = "../substrate/frame/benchmarking" }
-#frame-benchmarking-cli = { path = "../substrate/utils/frame/benchmarking-cli" }
-#sc-basic-authorship = { path = "../substrate/client/basic-authorship" }
-#sc-block-builder = { path = "../substrate/client/block-builder" }
-#sc-chain-spec = { path = "../substrate/client/chain-spec" }
-#sc-cli = { path = "../substrate/client/cli" }
-#sc-client-api = { path = "../substrate/client/api" }
-#sc-client-db = { path = "../substrate/client/db" }
-#sc-consensus = { path = "../substrate/client/consensus/common" }
-#sc-consensus-aura = { path = "../substrate/client/consensus/aura" }
-#sc-consensus-babe = { path = "../substrate/client/consensus/babe" }
-#sc-consensus-manual-seal = { path = "../substrate/client/consensus/manual-seal" }
-#sc-consensus-slots = { path = "../substrate/client/consensus/slots" }
-#sc-consensus-uncles = { path = "../substrate/client/consensus/uncles" }
-#sc-executor = { path = "../substrate/client/executor" }
-#sc-executor-common = { path = "../substrate/client/executor/common" }
-#sc-executor-wasmi = { path = "../substrate/client/executor/wasmi" }
-#sc-executor-wasmtime = { path = "../substrate/client/executor/wasmtime" }
-#sc-finality-grandpa = { path = "../substrate/client/finality-grandpa" }
-#sc-keystore = { path = "../substrate/client/keystore" }
-#sc-network = { path = "../substrate/client/network" }
-#sc-rpc-api = { path = "../substrate/client/rpc-api" }
-#sc-service = { path = "../substrate/client/service" }
-#sc-telemetry = { path = "../substrate/client/telemetry" }
-#sc-transaction-pool = { path = "../substrate/client/transaction-pool" }
-#sc-transaction-pool-api = { path = "../substrate/client/transaction-pool/api" }
-#sp-api = { path = "../substrate/primitives/api" }
-#sp-application-crypto = { path = "../substrate/primitives/application-crypto" }
-#sp-arithmetic = { path = "../substrate/primitives/arithmetic" }
-#sp-authority-discovery = { path = "../substrate/primitives/authority-discovery" }
-#sp-authorship = { path = "../substrate/primitives/authorship" }
-#sp-block-builder = { path = "../substrate/primitives/block-builder" }
-#sp-blockchain = { path = "../substrate/primitives/blockchain" }
-#sp-consensus = { path = "../substrate/primitives/consensus/common" }
-#sp-consensus-babe = { path = "../substrate/primitives/consensus/babe" }
-#sp-consensus-slots = { path = "../substrate/primitives/consensus/slots" }
-#sp-consensus-vrf = { path = "../substrate/primitives/consensus/vrf" }
-#sp-core = { path = "../substrate/primitives/core" }
-#sp-core-hashing = { path = "../substrate/primitives/core/hashing" }
-#sp-core-hashing-proc-macro = { path = "../substrate/primitives/core/hashing/proc-macro" }
-#sp-debug-derive = { path = "../substrate/primitives/debug-derive" }
-#sp-externalities = { path = "../substrate/primitives/externalities" }
-#sp-finality-grandpa = { path = "../substrate/primitives/finality-grandpa" }
-#sp-inherents = { path = "../substrate/primitives/inherents" }
-#sp-io = { path = "../substrate/primitives/io" }
-#sp-keyring = { path = "../substrate/primitives/keyring" }
-#sp-keystore = { path = "../substrate/primitives/keystore" }
-#sp-maybe-compressed-blob = { path = "../substrate/primitives/maybe-compressed-blob" }
-#sp-offchain = { path = "../substrate/primitives/offchain" }
-#sp-panic-handler = { path = "../substrate/primitives/panic-handler" }
-#sp-rpc = { path = "../substrate/primitives/rpc" }
-#sp-runtime = { path = "../substrate/primitives/runtime" }
-#sp-session = { path = "../substrate/primitives/session" }
-#sp-staking = { path = "../substrate/primitives/staking" }
-#sp-state-machine = { path = "../substrate/primitives/state-machine" }
-#sp-std = { path = "../substrate/primitives/std" }
-#sp-storage = { path = "../substrate/primitives/storage" }
-#sp-timestamp = { path = "../substrate/primitives/timestamp" }
-#sp-tracing = { path = "../substrate/primitives/tracing" }
-#sp-transaction-pool = { path = "../substrate/primitives/transaction-pool" }
-#sp-trie = { path = "../substrate/primitives/trie" }
-#sp-version = { path = "../substrate/primitives/version" }
-#sp-weights = { path = "../substrate/primitives/weights" }
-#substrate-prometheus-endpoint = { path = "../substrate/utils/prometheus" }
+[workspace.dependencies]
+sp-api = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32", default-features = false }
diff --git a/end2end-tests/Cargo.toml b/end2end-tests/Cargo.toml
index 07df18c1aa1878428fd2c5c9b1b655df405ea810..dc6af9e55b0dcbaa040726c9fa02417742787634 100644
--- a/end2end-tests/Cargo.toml
+++ b/end2end-tests/Cargo.toml
@@ -1,12 +1,13 @@
 [package]
-authors = ['Axiom-Team Developers <https://axiom-team.fr>']
-description = 'duniter end2end tests.'
-edition = "2021"
-homepage = 'https://duniter.org'
-license = 'AGPL-3.0'
 name = 'duniter-end2end-tests'
-repository = 'https://git.duniter.org/nodes/rust/duniter-v2s'
-version = '3.0.0'
+edition.workspace = true
+authors.workspace = true
+description.workspace = true
+license.workspace = true
+repository.workspace = true
+documentation.workspace = true
+homepage.workspace = true
+version.workspace = true
 
 [dev-dependencies]
 anyhow = "1.0"
diff --git a/live-tests/Cargo.toml b/live-tests/Cargo.toml
index 52e0e475d068d79b70cbece0f0e8b492bf0b84de..ee058607a484626ec06d778377f44bcc818c6495 100644
--- a/live-tests/Cargo.toml
+++ b/live-tests/Cargo.toml
@@ -1,12 +1,13 @@
 [package]
-authors = ['Axiom-Team Developers <https://axiom-team.fr>']
-description = 'duniter live tests.'
-edition = "2021"
-homepage = 'https://duniter.org'
-license = 'AGPL-3.0'
 name = 'duniter-live-tests'
-repository = 'https://git.duniter.org/nodes/rust/duniter-v2s'
-version = '3.0.0'
+edition.workspace = true
+authors.workspace = true
+description.workspace = true
+license.workspace = true
+repository.workspace = true
+documentation.workspace = true
+homepage.workspace = true
+version.workspace = true
 
 [dev-dependencies]
 anyhow = "1.0"
diff --git a/node/Cargo.toml b/node/Cargo.toml
new file mode 100644
index 0000000000000000000000000000000000000000..c0ce5a8e9d223dc6127de167872687a0db026497
--- /dev/null
+++ b/node/Cargo.toml
@@ -0,0 +1,272 @@
+# [package]
+# authors.workspace = true
+# build = 'build.rs'
+# description = ''
+# edition = "2021"
+# homepage = 'https://duniter.org'
+# license = 'AGPL-3.0'
+# repository = 'https://git.duniter.org/nodes/rust/duniter-v2s'
+# version = '0.3.0'
+
+# [PROJECT_DIR]/bar/Cargo.toml
+[package]
+name = "duniter"
+build = "build.rs"
+edition.workspace = true
+authors.workspace = true
+description.workspace = true
+license.workspace = true
+repository.workspace = true
+documentation.workspace = true
+homepage.workspace = true
+version.workspace = true
+
+[package.metadata.docs.rs]
+targets = ['x86_64-unknown-linux-gnu']
+
+[[bin]]
+bench = false
+name = 'duniter'
+path = "src/main.rs"
+
+[features]
+default = ["gdev"]
+g1 = ["g1-runtime"]
+gdev = ["gdev-runtime"]
+gtest = ["gtest-runtime"]
+runtime-benchmarks = [
+    #'g1-runtime',
+    #'g1-runtime/runtime-benchmarks',
+    'gdev-runtime',
+    'gdev-runtime/runtime-benchmarks',
+    #'gtest-runtime',
+    #'gtest-runtime/runtime-benchmarks',
+    'sc-client-db/runtime-benchmarks',
+]
+try-runtime = [
+	#"g1-runtime/try-runtime",
+	"gdev-runtime/try-runtime",
+	#"gtest-runtime/try-runtime",
+	"try-runtime-cli"
+]
+
+[build-dependencies]
+clap = { version = "4.0" }
+#clap_complete = { version = "4.0" }
+substrate-build-script-utils = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32' }
+
+[dev-dependencies]
+rusty-hook = "^0.11.2"
+
+# Dependencies for specific targets
+[target.'cfg(any(target_arch="x86_64", target_arch="aarch64"))'.dependencies]
+sc-cli = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32", default-features = false, features = ["wasmtime"] }
+sc-service = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32", default-features = false, features = ["wasmtime"] }
+sp-trie = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32", features = ["memory-tracker"] }
+
+
+[dependencies]
+# local dependencies
+common-runtime = { path = '../runtime/common' }
+g1-runtime = { path = '../runtime/g1', optional = true }
+gdev-runtime = { path = '../runtime/gdev', optional = true }
+gtest-runtime = { path = '../runtime/gtest', optional = true }
+pallet-certification = { path = '../pallets/certification' }
+pallet-oneshot-account = { path = '../pallets/oneshot-account' }
+sp-membership = { path = '../primitives/membership' }
+
+# crates.io dependencies
+async-io = "1.3"
+clap = { version = "4.0", features = ["derive"] }
+clap_complete = { version = "4" }
+futures = { version = "0.3.1", features = ["compat"] }
+hex = "0.4.3"
+jsonrpsee = { version = "0.15.1", features = ["server"] }
+lazy_static = "1.4.0"
+log = "0.4"
+maplit = '1.0.2'
+memmap2 = "0.5.0"
+serde = "1.0"
+serde_json = "1.0.64"
+tracing-core = "0.1.28"
+
+# substrate dependencies
+frame-benchmarking = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+frame-benchmarking-cli = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+frame-system = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32", default-features = false }
+pallet-grandpa = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+pallet-transaction-payment = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32", default-features = false }
+pallet-transaction-payment-rpc = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sc-basic-authorship = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sc-chain-spec = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sc-cli = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32", default-features = false }
+sc-client-api = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sc-consensus = { 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" }
+sc-client-db = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32", default-features = false }
+sc-consensus-uncles = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sc-executor = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sc-finality-grandpa = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sc-keystore = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sc-network = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sc-rpc-api = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sc-service = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32", default-features = false }
+sc-telemetry = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sc-transaction-pool = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sc-transaction-pool-api = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sp-api = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sp-authority-discovery = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sp-block-builder = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sp-blockchain = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sp-consensus = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sp-consensus-babe = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sp-core = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sp-finality-grandpa = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sp-inherents = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sp-io = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sp-offchain = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sp-keyring = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sp-keystore = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sp-runtime = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sp-session = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sp-storage = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sp-timestamp = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sp-transaction-pool = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+sp-trie = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+substrate-frame-rpc-system = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" }
+try-runtime-cli = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32", optional = true }
+
+# The list of dependencies below (which can be both direct and indirect dependencies) are crates
+# that are suspected to be CPU-intensive, and that are unlikely to require debugging (as some of
+# their debug info might be missing) or to require to be frequently recompiled. We compile these
+# dependencies with `opt-level=3` even in "dev" mode in order to make "dev" mode more usable.
+# The majority of these crates are cryptographic libraries.
+#
+# This list is only relevant when running `cargo build` from within
+# the Duniter-v2s workspace.
+#
+# If you see an error mentioning "profile package spec ... did not match any packages", it
+# probably concerns this list.
+#
+# This list is ordered alphabetically.
+[profile.dev.package]
+blake2 = { opt-level = 3 }
+blake2-rfc = { opt-level = 3 }
+blake2b_simd = { opt-level = 3 }
+chacha20poly1305 = { opt-level = 3 }
+cranelift-codegen = { opt-level = 3 }
+cranelift-wasm = { opt-level = 3 }
+crc32fast = { opt-level = 3 }
+crossbeam-deque = { opt-level = 3 }
+crypto-mac = { opt-level = 3 }
+curve25519-dalek = { opt-level = 3 }
+ed25519-dalek = { opt-level = 3 }
+flate2 = { opt-level = 3 }
+futures-channel = { opt-level = 3 }
+hashbrown = { opt-level = 3 }
+hash-db = { opt-level = 3 }
+hmac = { opt-level = 3 }
+httparse = { opt-level = 3 }
+integer-sqrt = { opt-level = 3 }
+keccak = { opt-level = 3 }
+libm = { opt-level = 3 }
+libsecp256k1 = { opt-level = 3 }
+libz-sys = { opt-level = 3 }
+mio = { opt-level = 3 }
+nalgebra = { opt-level = 3 }
+num-bigint = { opt-level = 3 }
+parking_lot = { opt-level = 3 }
+parking_lot_core = { opt-level = 3 }
+percent-encoding = { opt-level = 3 }
+primitive-types = { opt-level = 3 }
+ring = { opt-level = 3 }
+rustls = { opt-level = 3 }
+sha2 = { opt-level = 3 }
+sha3 = { opt-level = 3 }
+smallvec = { opt-level = 3 }
+snow = { opt-level = 3 }
+twox-hash = { opt-level = 3 }
+uint = { opt-level = 3 }
+wasmi = { opt-level = 3 }
+x25519-dalek = { opt-level = 3 }
+yamux = { opt-level = 3 }
+zeroize = { opt-level = 3 }
+
+[profile.release]
+# Substrate runtime requires unwinding.
+panic = "unwind"
+
+[patch.crates-io]
+
+#[patch."https://github.com/duniter/substrate"]
+#fork-tree = { path = "../substrate/utils/fork-tree" }
+#frame-support = { path = "../substrate/frame/support" }
+#frame-support-procedural = { path = "../substrate/frame/support/procedural" }
+#frame-support-procedural-tools = { path = "../substrate/frame/support/procedural/tools" }
+#frame-system = { path = "../substrate/frame/system" }
+#frame-benchmarking = { path = "../substrate/frame/benchmarking" }
+#frame-benchmarking-cli = { path = "../substrate/utils/frame/benchmarking-cli" }
+#sc-basic-authorship = { path = "../substrate/client/basic-authorship" }
+#sc-block-builder = { path = "../substrate/client/block-builder" }
+#sc-chain-spec = { path = "../substrate/client/chain-spec" }
+#sc-cli = { path = "../substrate/client/cli" }
+#sc-client-api = { path = "../substrate/client/api" }
+#sc-client-db = { path = "../substrate/client/db" }
+#sc-consensus = { path = "../substrate/client/consensus/common" }
+#sc-consensus-aura = { path = "../substrate/client/consensus/aura" }
+#sc-consensus-babe = { path = "../substrate/client/consensus/babe" }
+#sc-consensus-manual-seal = { path = "../substrate/client/consensus/manual-seal" }
+#sc-consensus-slots = { path = "../substrate/client/consensus/slots" }
+#sc-consensus-uncles = { path = "../substrate/client/consensus/uncles" }
+#sc-executor = { path = "../substrate/client/executor" }
+#sc-executor-common = { path = "../substrate/client/executor/common" }
+#sc-executor-wasmi = { path = "../substrate/client/executor/wasmi" }
+#sc-executor-wasmtime = { path = "../substrate/client/executor/wasmtime" }
+#sc-finality-grandpa = { path = "../substrate/client/finality-grandpa" }
+#sc-keystore = { path = "../substrate/client/keystore" }
+#sc-network = { path = "../substrate/client/network" }
+#sc-rpc-api = { path = "../substrate/client/rpc-api" }
+#sc-service = { path = "../substrate/client/service" }
+#sc-telemetry = { path = "../substrate/client/telemetry" }
+#sc-transaction-pool = { path = "../substrate/client/transaction-pool" }
+#sc-transaction-pool-api = { path = "../substrate/client/transaction-pool/api" }
+#sp-api = { path = "../substrate/primitives/api" }
+#sp-application-crypto = { path = "../substrate/primitives/application-crypto" }
+#sp-arithmetic = { path = "../substrate/primitives/arithmetic" }
+#sp-authority-discovery = { path = "../substrate/primitives/authority-discovery" }
+#sp-authorship = { path = "../substrate/primitives/authorship" }
+#sp-block-builder = { path = "../substrate/primitives/block-builder" }
+#sp-blockchain = { path = "../substrate/primitives/blockchain" }
+#sp-consensus = { path = "../substrate/primitives/consensus/common" }
+#sp-consensus-babe = { path = "../substrate/primitives/consensus/babe" }
+#sp-consensus-slots = { path = "../substrate/primitives/consensus/slots" }
+#sp-consensus-vrf = { path = "../substrate/primitives/consensus/vrf" }
+#sp-core = { path = "../substrate/primitives/core" }
+#sp-core-hashing = { path = "../substrate/primitives/core/hashing" }
+#sp-core-hashing-proc-macro = { path = "../substrate/primitives/core/hashing/proc-macro" }
+#sp-debug-derive = { path = "../substrate/primitives/debug-derive" }
+#sp-externalities = { path = "../substrate/primitives/externalities" }
+#sp-finality-grandpa = { path = "../substrate/primitives/finality-grandpa" }
+#sp-inherents = { path = "../substrate/primitives/inherents" }
+#sp-io = { path = "../substrate/primitives/io" }
+#sp-keyring = { path = "../substrate/primitives/keyring" }
+#sp-keystore = { path = "../substrate/primitives/keystore" }
+#sp-maybe-compressed-blob = { path = "../substrate/primitives/maybe-compressed-blob" }
+#sp-offchain = { path = "../substrate/primitives/offchain" }
+#sp-panic-handler = { path = "../substrate/primitives/panic-handler" }
+#sp-rpc = { path = "../substrate/primitives/rpc" }
+#sp-runtime = { path = "../substrate/primitives/runtime" }
+#sp-session = { path = "../substrate/primitives/session" }
+#sp-staking = { path = "../substrate/primitives/staking" }
+#sp-state-machine = { path = "../substrate/primitives/state-machine" }
+#sp-std = { path = "../substrate/primitives/std" }
+#sp-storage = { path = "../substrate/primitives/storage" }
+#sp-timestamp = { path = "../substrate/primitives/timestamp" }
+#sp-tracing = { path = "../substrate/primitives/tracing" }
+#sp-transaction-pool = { path = "../substrate/primitives/transaction-pool" }
+#sp-trie = { path = "../substrate/primitives/trie" }
+#sp-version = { path = "../substrate/primitives/version" }
+#sp-weights = { path = "../substrate/primitives/weights" }
+#substrate-prometheus-endpoint = { path = "../substrate/utils/prometheus" }
diff --git a/pallets/authority-members/Cargo.toml b/pallets/authority-members/Cargo.toml
index 485f2b203f216037df1876df0cac737700ced2ab..3b38f24833753fd57b5340bfa448907d82029d42 100644
--- a/pallets/authority-members/Cargo.toml
+++ b/pallets/authority-members/Cargo.toml
@@ -1,13 +1,13 @@
 [package]
-authors = ['librelois <c@elo.tf>']
-description = 'FRAME pallet authority members.'
-edition = "2021"
-homepage = 'https://duniter.org'
-license = 'AGPL-3.0'
 name = 'pallet-authority-members'
-readme = 'README.md'
-repository = 'https://git.duniter.org/nodes/rust/duniter-v2s'
-version = '3.0.0'
+edition.workspace = true
+authors.workspace = true
+description.workspace = true
+license.workspace = true
+repository.workspace = true
+documentation.workspace = true
+homepage.workspace = true
+version.workspace = true
 
 [features]
 default = ['std']
diff --git a/pallets/certification/Cargo.toml b/pallets/certification/Cargo.toml
index 7615c6f00453a10f76ee4b0feb61cb3228a898c9..ffade350d18ab5b5af392f53545d3eabcaff4cf4 100644
--- a/pallets/certification/Cargo.toml
+++ b/pallets/certification/Cargo.toml
@@ -1,13 +1,13 @@
 [package]
-authors = ['librelois <c@elo.tf>']
-description = 'FRAME pallet certification.'
-edition = "2021"
-homepage = 'https://duniter.org'
-license = 'AGPL-3.0'
 name = 'pallet-certification'
-readme = 'README.md'
-repository = 'https://git.duniter.org/nodes/rust/duniter-v2s'
-version = '3.0.0'
+edition.workspace = true
+authors.workspace = true
+description.workspace = true
+license.workspace = true
+repository.workspace = true
+documentation.workspace = true
+homepage.workspace = true
+version.workspace = true
 
 [features]
 default = ['std']
diff --git a/pallets/duniter-account/Cargo.toml b/pallets/duniter-account/Cargo.toml
index 169cbff1bb02631ea420adeb35f37ebdd7cb9f74..115238f1ee88dc1dda389d2d2504b29376cfdfc9 100644
--- a/pallets/duniter-account/Cargo.toml
+++ b/pallets/duniter-account/Cargo.toml
@@ -1,13 +1,13 @@
 [package]
-authors = ['librelois <c@elo.tf>']
-description = 'FRAME pallet duniter account.'
-edition = "2021"
-homepage = 'https://duniter.org'
-license = 'AGPL-3.0'
 name = 'pallet-duniter-account'
-readme = 'README.md'
-repository = 'https://git.duniter.org/nodes/rust/duniter-v2s'
-version = '3.0.0'
+edition.workspace = true
+authors.workspace = true
+description.workspace = true
+license.workspace = true
+repository.workspace = true
+documentation.workspace = true
+homepage.workspace = true
+version.workspace = true
 
 [features]
 default = ['std']
diff --git a/pallets/duniter-test-parameters/Cargo.toml b/pallets/duniter-test-parameters/Cargo.toml
index 7fef56df4e1fac59126aa986c2fb22ad921d4d75..3e08a039bb8e11deb2bc61bf335780b59d41af37 100644
--- a/pallets/duniter-test-parameters/Cargo.toml
+++ b/pallets/duniter-test-parameters/Cargo.toml
@@ -1,12 +1,13 @@
 [package]
-authors = ['librelois <c@elo.tf>']
-description = 'Duniter test parameters.'
-edition = "2021"
-homepage = 'https://duniter.org'
-license = 'AGPL-3.0'
 name = 'pallet-duniter-test-parameters'
-repository = 'https://git.duniter.org/nodes/rust/duniter-v2s'
-version = '3.0.0'
+edition.workspace = true
+authors.workspace = true
+description.workspace = true
+license.workspace = true
+repository.workspace = true
+documentation.workspace = true
+homepage.workspace = true
+version.workspace = true
 
 [features]
 default = ['std']
diff --git a/pallets/duniter-test-parameters/macro/Cargo.toml b/pallets/duniter-test-parameters/macro/Cargo.toml
index 4faec3d4bcc3abf2760bd270cb14a97a55e57f0c..0cd48077d627d581fe68327b503b91a4d65c5a4b 100644
--- a/pallets/duniter-test-parameters/macro/Cargo.toml
+++ b/pallets/duniter-test-parameters/macro/Cargo.toml
@@ -1,12 +1,14 @@
 [package]
-authors = ['librelois <c@elo.tf>']
-description = 'Duniter test parameters macro.'
-edition = "2021"
-homepage = 'https://duniter.org'
-license = 'AGPL-3.0'
 name = 'pallet-duniter-test-parameters-macro'
-repository = 'https://git.duniter.org/nodes/rust/duniter-v2s'
-version = '3.0.0'
+edition.workspace = true
+authors.workspace = true
+description.workspace = true
+license.workspace = true
+repository.workspace = true
+documentation.workspace = true
+homepage.workspace = true
+version.workspace = true
+
 
 [lib]
 proc-macro = true
@@ -15,4 +17,4 @@ proc-macro = true
 num_enum = { version = "0.5.3", default-features = false }
 proc-macro2 = "1.0"
 quote = "1.0"
-syn = { version = "1.0", features = [ "extra-traits", "fold", "full", "visit" ] }
+syn = { version = "1.0", features = ["extra-traits", "fold", "full", "visit"] }
diff --git a/pallets/duniter-wot/Cargo.toml b/pallets/duniter-wot/Cargo.toml
index 252e9e8a4c84b25e6931aeb151afab4d2bed03ae..2a3643714d02e2cb20fd34ea6f7c28f1c5033279 100644
--- a/pallets/duniter-wot/Cargo.toml
+++ b/pallets/duniter-wot/Cargo.toml
@@ -1,13 +1,13 @@
 [package]
-authors = ['librelois <c@elo.tf>']
-description = 'FRAME pallet duniter wot.'
-edition = "2021"
-homepage = 'https://duniter.org'
-license = 'AGPL-3.0'
 name = 'pallet-duniter-wot'
-readme = 'README.md'
-repository = 'https://git.duniter.org/nodes/rust/duniter-v2s'
-version = '3.0.0'
+edition.workspace = true
+authors.workspace = true
+description.workspace = true
+license.workspace = true
+repository.workspace = true
+documentation.workspace = true
+homepage.workspace = true
+version.workspace = true
 
 [features]
 default = ['std']
diff --git a/pallets/identity/Cargo.toml b/pallets/identity/Cargo.toml
index 5eb5c216737c9c6df5030d9abafe118270591713..af15e453299f9e40634000e874c2799e8ca5c942 100644
--- a/pallets/identity/Cargo.toml
+++ b/pallets/identity/Cargo.toml
@@ -1,13 +1,13 @@
 [package]
-authors = ['librelois <c@elo.tf>']
-description = 'FRAME pallet identity.'
-edition = "2021"
-homepage = 'https://duniter.org'
-license = 'AGPL-3.0'
 name = 'pallet-identity'
-readme = 'README.md'
-repository = 'https://git.duniter.org/nodes/rust/duniter-v2s'
-version = '3.0.0'
+edition.workspace = true
+authors.workspace = true
+description.workspace = true
+license.workspace = true
+repository.workspace = true
+documentation.workspace = true
+homepage.workspace = true
+version.workspace = true
 
 [features]
 default = ['std']
diff --git a/pallets/membership/Cargo.toml b/pallets/membership/Cargo.toml
index 2d0c23a9d239db6b36ff0234262eed180f83fb20..000a8301ef7f1ea1d40b03e4157971493155a617 100644
--- a/pallets/membership/Cargo.toml
+++ b/pallets/membership/Cargo.toml
@@ -1,13 +1,13 @@
 [package]
-authors = ['librelois <c@elo.tf>']
-description = 'FRAME pallet membership.'
-edition = "2021"
-homepage = 'https://duniter.org'
-license = 'AGPL-3.0'
 name = 'pallet-membership'
-readme = 'README.md'
-repository = 'https://git.duniter.org/nodes/rust/duniter-v2s'
-version = '3.0.0'
+edition.workspace = true
+authors.workspace = true
+description.workspace = true
+license.workspace = true
+repository.workspace = true
+documentation.workspace = true
+homepage.workspace = true
+version.workspace = true
 
 [features]
 default = ['std']
diff --git a/pallets/oneshot-account/Cargo.toml b/pallets/oneshot-account/Cargo.toml
index f17a8e1d2962d71aeadd4bb3e5ec5004dd8d7ae7..f22c0e0e992477d8440300f213d85f06070d2760 100644
--- a/pallets/oneshot-account/Cargo.toml
+++ b/pallets/oneshot-account/Cargo.toml
@@ -1,13 +1,13 @@
 [package]
-authors = ['librelois <c@elo.tf>']
-description = 'FRAME pallet oneshot account.'
-edition = '2018'
-homepage = 'https://duniter.org'
-license = 'AGPL-3.0'
 name = 'pallet-oneshot-account'
-readme = 'README.md'
-repository = 'https://git.duniter.org/nodes/rust/duniter-v2s'
-version = '3.0.0'
+edition.workspace = true
+authors.workspace = true
+description.workspace = true
+license.workspace = true
+repository.workspace = true
+documentation.workspace = true
+homepage.workspace = true
+version.workspace = true
 
 [features]
 default = ['std']
diff --git a/pallets/provide-randomness/Cargo.toml b/pallets/provide-randomness/Cargo.toml
index 5caab0b725aa418d0b7539db577f4c680ab434e7..595f51bfdca467dd76f9b64c0f04e63fe5e7aae8 100644
--- a/pallets/provide-randomness/Cargo.toml
+++ b/pallets/provide-randomness/Cargo.toml
@@ -1,12 +1,13 @@
 [package]
-authors = ['librelois <c@elo.tf>']
-description = 'FRAME pallet to provide randomness to users.'
-edition = "2021"
-homepage = 'https://duniter.org'
-license = 'AGPL-3.0'
 name = 'pallet-provide-randomness'
-repository = 'https://git.duniter.org/nodes/rust/duniter-v2s'
-version = '3.0.0'
+edition.workspace = true
+authors.workspace = true
+description.workspace = true
+license.workspace = true
+repository.workspace = true
+documentation.workspace = true
+homepage.workspace = true
+version.workspace = true
 
 [features]
 default = ['std']
diff --git a/pallets/universal-dividend/Cargo.toml b/pallets/universal-dividend/Cargo.toml
index a4c167c13631fde767da1a25c44728088c2ffa02..186b6bc1739242375812841a37f62baa1942770d 100644
--- a/pallets/universal-dividend/Cargo.toml
+++ b/pallets/universal-dividend/Cargo.toml
@@ -1,12 +1,13 @@
 [package]
-authors = ['librelois <c@elo.tf>']
-description = 'FRAME pallet universal dividend.'
-edition = "2021"
-homepage = 'https://duniter.org'
-license = 'AGPL-3.0'
 name = 'pallet-universal-dividend'
-repository = 'https://git.duniter.org/nodes/rust/duniter-v2s'
-version = '3.0.0'
+edition.workspace = true
+authors.workspace = true
+description.workspace = true
+license.workspace = true
+repository.workspace = true
+documentation.workspace = true
+homepage.workspace = true
+version.workspace = true
 
 [features]
 default = ['std']
diff --git a/pallets/upgrade-origin/Cargo.toml b/pallets/upgrade-origin/Cargo.toml
index c4ff72d4c339e0f9632f662d5d3a358a7593ba40..000b89cb4756a9d8c70399b02369c79e32af1c7e 100644
--- a/pallets/upgrade-origin/Cargo.toml
+++ b/pallets/upgrade-origin/Cargo.toml
@@ -1,12 +1,13 @@
 [package]
-authors = ['librelois <c@elo.tf>']
-description = 'FRAME pallet to upgrade specified origin to root.'
-edition = "2021"
-homepage = 'https://duniter.org'
-license = 'AGPL-3.0'
 name = 'pallet-upgrade-origin'
-repository = 'https://git.duniter.org/nodes/rust/duniter-v2s'
-version = '3.0.0'
+edition.workspace = true
+authors.workspace = true
+description.workspace = true
+license.workspace = true
+repository.workspace = true
+documentation.workspace = true
+homepage.workspace = true
+version.workspace = true
 
 [features]
 default = ['std']
diff --git a/primitives/duniter/Cargo.toml b/primitives/duniter/Cargo.toml
index aca6a99010de8515b6540d0cb16cbc5cf52dcc90..cdcce860a04b3b7cb57b02ba4566ad42af29c488 100644
--- a/primitives/duniter/Cargo.toml
+++ b/primitives/duniter/Cargo.toml
@@ -1,13 +1,13 @@
 [package]
-authors = ['librelois <c@elo.tf>']
-description = 'primitives for duniter runtime.'
-edition = "2021"
-homepage = 'https://duniter.org'
-license = 'AGPL-3.0'
 name = 'duniter-primitives'
-readme = 'README.md'
-repository = 'https://git.duniter.org/nodes/rust/duniter-v2s'
-version = '3.0.0'
+edition.workspace = true
+authors.workspace = true
+description.workspace = true
+license.workspace = true
+repository.workspace = true
+documentation.workspace = true
+homepage.workspace = true
+version.workspace = true
 
 [features]
 default = ['std']
diff --git a/primitives/membership/Cargo.toml b/primitives/membership/Cargo.toml
index cfaf056ea2654d715275aea2ccf55777901b3033..36592a7692f8c796327299bf179d1feac663388f 100644
--- a/primitives/membership/Cargo.toml
+++ b/primitives/membership/Cargo.toml
@@ -1,13 +1,13 @@
 [package]
-authors = ['librelois <c@elo.tf>']
-description = 'primitives for pallet membership.'
-edition = "2021"
-homepage = 'https://duniter.org'
-license = 'AGPL-3.0'
 name = 'sp-membership'
-readme = 'README.md'
-repository = 'https://git.duniter.org/nodes/rust/duniter-v2s'
-version = '3.0.0'
+edition.workspace = true
+authors.workspace = true
+description.workspace = true
+license.workspace = true
+repository.workspace = true
+documentation.workspace = true
+homepage.workspace = true
+version.workspace = true
 
 [features]
 default = ['std']
diff --git a/runtime/common/Cargo.toml b/runtime/common/Cargo.toml
index b78bd44c291d866e40d9263121f47083e2af410f..9a4423a36397812660973841557f38ea64dd4ff6 100644
--- a/runtime/common/Cargo.toml
+++ b/runtime/common/Cargo.toml
@@ -1,10 +1,14 @@
 [package]
 name = 'common-runtime'
-description = 'Common code shared between all runtimes'
-license = 'GPL-3.0-only'
-version = '0.8.0-dev'
-authors = ['Axiom-Team Developers <https://axiom-team.fr>']
-edition = "2021"
+edition.workspace = true
+authors.workspace = true
+description.workspace = true
+license.workspace = true
+repository.workspace = true
+documentation.workspace = true
+homepage.workspace = true
+version.workspace = true
+
 
 [features]
 runtime-benchmarks = [
diff --git a/runtime/g1/Cargo.toml b/runtime/g1/Cargo.toml
index 03f0577377cf6636695cc424b8b6aa019fae0a5a..ad123e3ec8c715a425d1453873571f1893d88351 100644
--- a/runtime/g1/Cargo.toml
+++ b/runtime/g1/Cargo.toml
@@ -1,15 +1,18 @@
+[package]
+name = 'g1-runtime'
+edition.workspace = true
+authors.workspace = true
+description.workspace = true
+license.workspace = true
+repository.workspace = true
+documentation.workspace = true
+homepage.workspace = true
+version.workspace = true
+
 [build-dependencies.substrate-wasm-builder]
 git = 'https://github.com/duniter/substrate'
 branch = 'duniter-substrate-v0.9.32'
 
-[package]
-authors = ['Axiom-Team Developers <https://axiom-team.fr>']
-edition = "2021"
-homepage = 'https://duniter.org'
-license = 'AGPL-3.0'
-name = 'g1-runtime'
-repository = 'https://git.duniter.org/nodes/rust/duniter-v2s'
-version = '3.0.0'
 [package.metadata.docs.rs]
 targets = ['x86_64-unknown-linux-gnu']
 
diff --git a/runtime/gdev/Cargo.toml b/runtime/gdev/Cargo.toml
index 643fc4b03a121197620de2bd4082f32898ece4b4..4ce3df9e4dc9e006238ef163c4e3c00fcccfe8e9 100644
--- a/runtime/gdev/Cargo.toml
+++ b/runtime/gdev/Cargo.toml
@@ -1,15 +1,18 @@
+[package]
+name = 'gdev-runtime'
+edition.workspace = true
+authors.workspace = true
+description.workspace = true
+license.workspace = true
+repository.workspace = true
+documentation.workspace = true
+homepage.workspace = true
+version.workspace = true
+
 [build-dependencies.substrate-wasm-builder]
 git = 'https://github.com/duniter/substrate'
 branch = 'duniter-substrate-v0.9.32'
 
-[package]
-authors = ['Axiom-Team Developers <https://axiom-team.fr>']
-edition = "2021"
-homepage = 'https://duniter.org'
-license = 'AGPL-3.0'
-name = 'gdev-runtime'
-repository = 'https://git.duniter.org/nodes/rust/duniter-v2s'
-version = '3.0.0'
 [package.metadata.docs.rs]
 targets = ['x86_64-unknown-linux-gnu']
 
@@ -182,7 +185,8 @@ pallet-transaction-payment = { git = 'https://github.com/duniter/substrate', bra
 pallet-transaction-payment-rpc-runtime-api = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false }
 pallet-treasury = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false }
 pallet-utility = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false }
-sp-api = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false }
+# sp-api = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false }
+sp-api = { workspace = true }
 sp-arithmetic = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false }
 sp-authority-discovery = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false }
 sp-block-builder = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false }
diff --git a/runtime/gtest/Cargo.toml b/runtime/gtest/Cargo.toml
index 034ab8621934ae906a77e47db06590a885d768a6..7391782cd00e494cec076a16e315a7730a1033b6 100644
--- a/runtime/gtest/Cargo.toml
+++ b/runtime/gtest/Cargo.toml
@@ -1,15 +1,18 @@
+[package]
+name = 'gtest-runtime'
+edition.workspace = true
+authors.workspace = true
+description.workspace = true
+license.workspace = true
+repository.workspace = true
+documentation.workspace = true
+homepage.workspace = true
+version.workspace = true
+
 [build-dependencies.substrate-wasm-builder]
 git = 'https://github.com/duniter/substrate'
 branch = 'duniter-substrate-v0.9.32'
 
-[package]
-authors = ['Axiom-Team Developers <https://axiom-team.fr>']
-edition = "2021"
-homepage = 'https://duniter.org'
-license = 'AGPL-3.0'
-name = 'gtest-runtime'
-repository = 'https://git.duniter.org/nodes/rust/duniter-v2s'
-version = '3.0.0'
 [package.metadata.docs.rs]
 targets = ['x86_64-unknown-linux-gnu']
 
diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml
index acf7d5b5e7a982f10b54ef6f3c9c31555404d308..39c296105385ff26e9fbef22bc02c1eabe42445f 100644
--- a/xtask/Cargo.toml
+++ b/xtask/Cargo.toml
@@ -1,11 +1,13 @@
 [package]
-authors = ["elois <elois@duniter.org>"]
-description = "Duniter-v2s xtask"
-edition = "2021"
-license = "AGPL-3.0"
 name = "xtask"
-repository = "https://git.duniter.org/nodes/rust/duniter-v2s"
-version = "0.1.0"
+edition.workspace = true
+authors.workspace = true
+description.workspace = true
+license.workspace = true
+repository.workspace = true
+documentation.workspace = true
+homepage.workspace = true
+version.workspace = true
 
 [[bin]]
 bench = false