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

fix cargo files

parent 771df7ef
No related branches found
No related tags found
1 merge request!161Offences management
Pipeline #32138 passed
...@@ -5305,7 +5305,7 @@ dependencies = [ ...@@ -5305,7 +5305,7 @@ dependencies = [
[[package]] [[package]]
name = "pallet-offences" name = "pallet-offences"
version = "4.0.0-dev" version = "3.0.0"
dependencies = [ dependencies = [
"frame-support", "frame-support",
"frame-system", "frame-system",
......
[package] [package]
name = "pallet-offences" name = "pallet-offences"
version = "4.0.0-dev" authors = ["Parity Technologies <admin@parity.io>", "Axiom-Team Developers <https://axiom-team.fr>"]
authors = ["Parity Technologies <admin@parity.io>"] description = 'FRAME pallet to handle offences.'
edition = "2021" edition = "2021"
license = "Apache-2.0" homepage = 'https://duniter.org'
homepage = "https://substrate.io" license = 'AGPL-3.0'
repository = "https://github.com/paritytech/substrate/" repository = 'https://git.duniter.org/nodes/rust/duniter-v2s'
description = "FRAME offences pallet" version = '3.0.0'
readme = "README.md" readme = "README.md"
[package.metadata.docs.rs] [package.metadata.docs.rs]
......
...@@ -123,6 +123,7 @@ pallet-provide-randomness = { path = '../../pallets/provide-randomness', default ...@@ -123,6 +123,7 @@ pallet-provide-randomness = { path = '../../pallets/provide-randomness', default
pallet-universal-dividend = { path = '../../pallets/universal-dividend', default-features = false } pallet-universal-dividend = { path = '../../pallets/universal-dividend', default-features = false }
pallet-upgrade-origin = { path = '../../pallets/upgrade-origin', default-features = false } pallet-upgrade-origin = { path = '../../pallets/upgrade-origin', default-features = false }
sp-membership = { path = '../../primitives/membership', default-features = false } sp-membership = { path = '../../primitives/membership', default-features = false }
pallet-offences = { path = '../../pallets/offences', default-features = false }
# crates.io # crates.io
codec = { package = "parity-scale-codec", version = "3.1.5", features = ["derive"], default-features = false } codec = { package = "parity-scale-codec", version = "3.1.5", features = ["derive"], default-features = false }
...@@ -147,7 +148,6 @@ pallet-balances = { git = 'https://github.com/duniter/substrate', branch = 'duni ...@@ -147,7 +148,6 @@ pallet-balances = { git = 'https://github.com/duniter/substrate', branch = 'duni
pallet-collective = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false } pallet-collective = { 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', default-features = false } pallet-grandpa = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false }
pallet-im-online = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false } pallet-im-online = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false }
pallet-offences = { path = '../../pallets/offences', default-features = false }
pallet-multisig = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false } pallet-multisig = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false }
pallet-preimage = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false } pallet-preimage = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false }
pallet-proxy = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false } pallet-proxy = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false }
......
...@@ -146,6 +146,7 @@ pallet-universal-dividend = { path = '../../pallets/universal-dividend', default ...@@ -146,6 +146,7 @@ pallet-universal-dividend = { path = '../../pallets/universal-dividend', default
pallet-session-benchmarking = { path = '../../pallets/session-benchmarking', default-features = false } pallet-session-benchmarking = { path = '../../pallets/session-benchmarking', default-features = false }
pallet-upgrade-origin = { path = '../../pallets/upgrade-origin', default-features = false } pallet-upgrade-origin = { path = '../../pallets/upgrade-origin', default-features = false }
sp-membership = { path = '../../primitives/membership', default-features = false } sp-membership = { path = '../../primitives/membership', default-features = false }
pallet-offences = { path = '../../pallets/offences', default-features = false }
# crates.io # crates.io
codec = { package = "parity-scale-codec", version = "3.1.5", features = ["derive"], default-features = false } codec = { package = "parity-scale-codec", version = "3.1.5", features = ["derive"], default-features = false }
...@@ -169,7 +170,6 @@ pallet-balances = { git = 'https://github.com/duniter/substrate', branch = 'duni ...@@ -169,7 +170,6 @@ pallet-balances = { git = 'https://github.com/duniter/substrate', branch = 'duni
pallet-collective = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false } pallet-collective = { 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', default-features = false } pallet-grandpa = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false }
pallet-im-online = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false } pallet-im-online = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false }
pallet-offences = { path = '../../pallets/offences', default-features = false }
pallet-multisig = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false } pallet-multisig = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false }
pallet-preimage = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false } pallet-preimage = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false }
pallet-proxy = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false } pallet-proxy = { git = 'https://github.com/duniter/substrate', branch = 'duniter-substrate-v0.9.32', default-features = false }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment