Skip to content
Snippets Groups Projects
Cargo.toml 6.86 KiB
Newer Older
Éloïs's avatar
Éloïs committed
[build-dependencies.substrate-wasm-builder]
git = 'https://github.com/librelois/substrate.git'
branch = 'duniter-monthly-2022-01'
Éloïs's avatar
Éloïs committed

Dan Forbes's avatar
Dan Forbes committed
[package]
authors = ['Axiom-Team Developers <https://axiom-team.fr>']
Dan Forbes's avatar
Dan Forbes committed
edition = '2018'
homepage = 'https://substrate.dev'
Éloïs's avatar
Éloïs committed
license = 'AGPL-3.0'
name = 'gdev-runtime'
Éloïs's avatar
Éloïs committed
repository = 'https://git.duniter.org/nodes/rust/duniter-v2s'
Dan Forbes's avatar
Dan Forbes committed
version = '3.0.0'
Dan Forbes's avatar
Dan Forbes committed
[package.metadata.docs.rs]
targets = ['x86_64-unknown-linux-gnu']

[features]
default = ['std']
runtime-benchmarks = [
Éloïs's avatar
Éloïs committed
    'frame-benchmarking',
    'frame-support/runtime-benchmarks',
    'frame-system-benchmarking',
    'frame-system/runtime-benchmarks',
    'hex-literal',
    'pallet-balances/runtime-benchmarks',
    'pallet-identity/runtime-benchmarks',
Éloïs's avatar
Éloïs committed
    'pallet-universal-dividend/runtime-benchmarks',
    'common-runtime/runtime-benchmarks',
Éloïs's avatar
Éloïs committed
    'sp-runtime/runtime-benchmarks',
Dan Forbes's avatar
Dan Forbes committed
std = [
Éloïs's avatar
Éloïs committed
    'codec/std',
    'frame-executive/std',
    'frame-support/std',
    'frame-system-rpc-runtime-api/std',
    'frame-system/std',
Éloïs's avatar
Éloïs committed
    'pallet-babe/std',
Éloïs's avatar
Éloïs committed
    'pallet-balances/std',
    'pallet-certification/std',
    'pallet-duniter-test-parameters/std',
    'pallet-duniter-wot/std',
    'pallet-identity/std',
    'pallet-membership/std',
Éloïs's avatar
Éloïs committed
    'pallet-grandpa/std',
    'pallet-multisig/std',
Éloïs's avatar
Éloïs committed
    'pallet-sudo/std',
    'pallet-universal-dividend/std',
    'pallet-transaction-payment-rpc-runtime-api/std',
    'pallet-transaction-payment/std',
    'common-runtime/std',
Éloïs's avatar
Éloïs committed
    'serde',
    'sp-api/std',
    'sp-arithmetic/std',
	'sp-authority-discovery/std',
Éloïs's avatar
Éloïs committed
    'sp-block-builder/std',
Éloïs's avatar
Éloïs committed
    'sp-consensus-babe/std',
Éloïs's avatar
Éloïs committed
    'sp-core/std',
    'sp-inherents/std',
    'sp-offchain/std',
    'sp-membership/std',
Éloïs's avatar
Éloïs committed
    'sp-runtime/std',
    'sp-session/std',
    'sp-std/std',
    'sp-transaction-pool/std',
    'sp-version/std',
common-runtime = { path = "../common", default-features = false }
pallet-certification = { path = '../../pallets/certification', default-features = false }
pallet-duniter-test-parameters = { path = '../../pallets/duniter-test-parameters', default-features = false }
pallet-duniter-wot = { path = '../../pallets/duniter-wot', default-features = false }
pallet-identity = { path = '../../pallets/identity', default-features = false }
pallet-membership = { path = '../../pallets/membership', default-features = false }
pallet-ud-accounts-storage = { path = '../../pallets/ud-accounts-storage', default-features = false }
pallet-universal-dividend = { path = '../../pallets/universal-dividend', default-features = false }
sp-membership = { path = '../../primitives/membership', default-features = false }
# substrate
scale-info = { version = "1.0", default-features = false, features = ["derive"] }

Éloïs's avatar
Éloïs committed
[dependencies.codec]
default-features = false
features = ['derive']
package = 'parity-scale-codec'
version = '2.3.1'
Éloïs's avatar
Éloïs committed

[dependencies.frame-benchmarking]
default-features = false
git = 'https://github.com/librelois/substrate.git'
Éloïs's avatar
Éloïs committed
optional = true
branch = 'duniter-monthly-2022-01'
Éloïs's avatar
Éloïs committed

[dependencies.frame-executive]
default-features = false
git = 'https://github.com/librelois/substrate.git'
branch = 'duniter-monthly-2022-01'
Éloïs's avatar
Éloïs committed

[dependencies.frame-support]
default-features = false
git = 'https://github.com/librelois/substrate.git'
branch = 'duniter-monthly-2022-01'
Éloïs's avatar
Éloïs committed

[dependencies.frame-system]
default-features = false
git = 'https://github.com/librelois/substrate.git'
branch = 'duniter-monthly-2022-01'
Éloïs's avatar
Éloïs committed

[dependencies.frame-system-benchmarking]
default-features = false
git = 'https://github.com/librelois/substrate.git'
Éloïs's avatar
Éloïs committed
optional = true
branch = 'duniter-monthly-2022-01'
Éloïs's avatar
Éloïs committed

[dependencies.frame-system-rpc-runtime-api]
default-features = false
git = 'https://github.com/librelois/substrate.git'
branch = 'duniter-monthly-2022-01'
Éloïs's avatar
Éloïs committed

[dependencies.hex-literal]
optional = true
version = '0.3.1'

Éloïs's avatar
Éloïs committed
[dependencies.pallet-babe]
Éloïs's avatar
Éloïs committed
default-features = false
git = 'https://github.com/librelois/substrate.git'
branch = 'duniter-monthly-2022-01'
Éloïs's avatar
Éloïs committed

[dependencies.pallet-balances]
default-features = false
git = 'https://github.com/librelois/substrate.git'
branch = 'duniter-monthly-2022-01'
Éloïs's avatar
Éloïs committed

[dependencies.pallet-grandpa]
default-features = false
git = 'https://github.com/librelois/substrate.git'
branch = 'duniter-monthly-2022-01'
Éloïs's avatar
Éloïs committed

[dependencies.pallet-multisig]
default-features = false
git = 'https://github.com/librelois/substrate.git'
branch = 'duniter-monthly-2022-01'
[dependencies.pallet-scheduler]
default-features = false
git = 'https://github.com/librelois/substrate.git'
branch = 'duniter-monthly-2022-01'
Éloïs's avatar
Éloïs committed

[dependencies.pallet-sudo]
default-features = false
git = 'https://github.com/librelois/substrate.git'
branch = 'duniter-monthly-2022-01'
Éloïs's avatar
Éloïs committed

[dependencies.pallet-transaction-payment]
default-features = false
git = 'https://github.com/librelois/substrate.git'
branch = 'duniter-monthly-2022-01'
Éloïs's avatar
Éloïs committed

[dependencies.pallet-transaction-payment-rpc-runtime-api]
default-features = false
git = 'https://github.com/librelois/substrate.git'
branch = 'duniter-monthly-2022-01'

[dependencies.pallet-utility]
default-features = false
git = 'https://github.com/librelois/substrate.git'
branch = 'duniter-monthly-2022-01'
Éloïs's avatar
Éloïs committed

[dependencies.serde]
version = "1.0.101"
optional = true
features = ["derive"]

[dependencies.sp-api]
default-features = false
git = 'https://github.com/librelois/substrate.git'
branch = 'duniter-monthly-2022-01'
Éloïs's avatar
Éloïs committed

[dependencies.sp-arithmetic]
default-features = false
git = 'https://github.com/librelois/substrate.git'
branch = 'duniter-monthly-2022-01'
Éloïs's avatar
Éloïs committed

Éloïs's avatar
Éloïs committed
[dependencies.sp-authority-discovery]
default-features = false
git = 'https://github.com/librelois/substrate.git'
branch = 'duniter-monthly-2022-01'

Éloïs's avatar
Éloïs committed
[dependencies.sp-block-builder]
default-features = false
git = 'https://github.com/librelois/substrate.git'
branch = 'duniter-monthly-2022-01'
Éloïs's avatar
Éloïs committed

Éloïs's avatar
Éloïs committed
[dependencies.sp-consensus-babe]
Éloïs's avatar
Éloïs committed
default-features = false
git = 'https://github.com/librelois/substrate.git'
branch = 'duniter-monthly-2022-01'
Éloïs's avatar
Éloïs committed

[dependencies.sp-core]
default-features = false
git = 'https://github.com/librelois/substrate.git'
branch = 'duniter-monthly-2022-01'
Éloïs's avatar
Éloïs committed

[dependencies.sp-inherents]
default-features = false
git = 'https://github.com/librelois/substrate.git'
branch = 'duniter-monthly-2022-01'
Éloïs's avatar
Éloïs committed

[dependencies.sp-offchain]
default-features = false
git = 'https://github.com/librelois/substrate.git'
branch = 'duniter-monthly-2022-01'
Éloïs's avatar
Éloïs committed

[dependencies.sp-runtime]
default-features = false
git = 'https://github.com/librelois/substrate.git'
branch = 'duniter-monthly-2022-01'
Éloïs's avatar
Éloïs committed

[dependencies.sp-session]
default-features = false
git = 'https://github.com/librelois/substrate.git'
branch = 'duniter-monthly-2022-01'
Éloïs's avatar
Éloïs committed

[dependencies.sp-std]
default-features = false
git = 'https://github.com/librelois/substrate.git'
branch = 'duniter-monthly-2022-01'
Éloïs's avatar
Éloïs committed

[dependencies.sp-transaction-pool]
default-features = false
git = 'https://github.com/librelois/substrate.git'
branch = 'duniter-monthly-2022-01'
Éloïs's avatar
Éloïs committed

[dependencies.sp-version]
default-features = false
git = 'https://github.com/librelois/substrate.git'
branch = 'duniter-monthly-2022-01'