Skip to content
Snippets Groups Projects
Cargo.toml 6.55 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 = 'g1-runtime'
Éloïs's avatar
Éloïs committed
repository = 'https://git.duniter.org/nodes/rust/duniter-substrate'
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-universal-dividend/runtime-benchmarks',
    'pallet-timestamp/runtime-benchmarks',
    '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',
    'pallet-aura/std',
    'pallet-balances/std',
    'pallet-certification/std',
    'pallet-identity/std',
Éloïs's avatar
Éloïs committed
    'pallet-grandpa/std',
    'pallet-randomness-collective-flip/std',
    'pallet-sudo/std',
    'pallet-universal-dividend/std',
    'pallet-timestamp/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-block-builder/std',
    'sp-consensus-aura/std',
    'sp-core/std',
    'sp-inherents/std',
    'sp-offchain/std',
    'sp-runtime/std',
    'sp-session/std',
    'sp-std/std',
    'sp-transaction-pool/std',
    'sp-version/std',

[dependencies]
pallet-certification = { path = '../../pallets/certification', default-features = false }
pallet-identity = { path = '../../pallets/identity', 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 }
common-runtime = { path = "../common", 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'

[dependencies.pallet-aura]
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'

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

[dependencies.pallet-randomness-collective-flip]
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-timestamp]
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.smallvec]
version = "1.6.1"

[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

[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

[dependencies.sp-consensus-aura]
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'