Skip to content
Snippets Groups Projects
Cargo.toml 2.02 KiB
Newer Older
Éloïs's avatar
Éloïs committed
[package]
authors = ['librelois <c@elo.tf>']
description = 'FRAME pallet certification.'
Éloïs's avatar
Éloïs committed
edition = '2018'
homepage = 'https://substrate.dev'
license = 'AGPL-3.0'
name = 'pallet-certification'
Éloïs's avatar
Éloïs committed
readme = 'README.md'
Éloïs's avatar
Éloïs committed
repository = 'https://git.duniter.org/nodes/rust/duniter-substrate'
Éloïs's avatar
Éloïs committed
version = '3.0.0'

[features]
default = ['std']
runtime-benchmarks = ['frame-benchmarking']
std = [
    'codec/std',
    'frame-support/std',
    'frame-system/std',
    'frame-benchmarking/std',
    'serde',
    'sp-core/std',
    'sp-runtime/std',
	'sp-std/std',
]
try-runtime = ['frame-support/try-runtime']

[dependencies]

# 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-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.serde]
version = "1.0.101"
optional = true
features = ["derive"]

[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-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-std]
default-features = false
git = 'https://github.com/librelois/substrate.git'
branch = 'duniter-monthly-2022-01'
Éloïs's avatar
Éloïs committed

### DOC ###

[package.metadata.docs.rs]
targets = ['x86_64-unknown-linux-gnu']
[dev-dependencies.serde]
version = '1.0.119'

### DEV ###

[dev-dependencies.maplit]
version = '1.0.2'

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