git.delta.rocks / unique-network / refs/commits / 22fc4951909c

difftreelog

source

substrate-node-template/Cargo.toml2.7 KiBsourcehistory
1[build-dependencies]2vergen = '3'3[profile.release]4panic = 'unwind'56[workspace]7members = ['runtime']89[dependencies]10derive_more = '0.14.0'11exit-future = '0.1'12futures = '0.1'13log = '0.4'14parking_lot = '0.9.0'15tokio = '0.1'16trie-root = '0.15.2'1718[dependencies.babe]19git = 'https://github.com/paritytech/substrate.git'20package = 'substrate-consensus-babe'21rev = '3ba0f2a2dbd37c31851a0ff1c1c0c47aa940de90'2223[dependencies.babe-primitives]24git = 'https://github.com/paritytech/substrate.git'25package = 'substrate-consensus-babe-primitives'26rev = '3ba0f2a2dbd37c31851a0ff1c1c0c47aa940de90'2728[dependencies.basic-authorship]29git = 'https://github.com/paritytech/substrate.git'30package = 'substrate-basic-authorship'31rev = '3ba0f2a2dbd37c31851a0ff1c1c0c47aa940de90'3233[dependencies.codec]34package = 'parity-scale-codec'35version = '1.0.0'3637[dependencies.ctrlc]38features = ['termination']39version = '3.0'4041[dependencies.grandpa]42git = 'https://github.com/paritytech/substrate.git'43package = 'substrate-finality-grandpa'44rev = '3ba0f2a2dbd37c31851a0ff1c1c0c47aa940de90'4546[dependencies.grandpa-primitives]47git = 'https://github.com/paritytech/substrate.git'48package = 'substrate-finality-grandpa-primitives'49rev = '3ba0f2a2dbd37c31851a0ff1c1c0c47aa940de90'5051[dependencies.inherents]52git = 'https://github.com/paritytech/substrate.git'53package = 'substrate-inherents'54rev = '3ba0f2a2dbd37c31851a0ff1c1c0c47aa940de90'5556[dependencies.network]57git = 'https://github.com/paritytech/substrate.git'58package = 'substrate-network'59rev = '3ba0f2a2dbd37c31851a0ff1c1c0c47aa940de90'6061[dependencies.node-template-runtime]62path = 'runtime'6364[dependencies.primitives]65git = 'https://github.com/paritytech/substrate.git'66package = 'substrate-primitives'67rev = '3ba0f2a2dbd37c31851a0ff1c1c0c47aa940de90'6869[dependencies.sr-io]70git = 'https://github.com/paritytech/substrate.git'71rev = '3ba0f2a2dbd37c31851a0ff1c1c0c47aa940de90'7273[dependencies.substrate-cli]74git = 'https://github.com/paritytech/substrate.git'75rev = '3ba0f2a2dbd37c31851a0ff1c1c0c47aa940de90'7677[dependencies.substrate-client]78git = 'https://github.com/paritytech/substrate.git'79rev = '3ba0f2a2dbd37c31851a0ff1c1c0c47aa940de90'8081[dependencies.substrate-executor]82git = 'https://github.com/paritytech/substrate.git'83rev = '3ba0f2a2dbd37c31851a0ff1c1c0c47aa940de90'8485[dependencies.substrate-service]86git = 'https://github.com/paritytech/substrate.git'87rev = '3ba0f2a2dbd37c31851a0ff1c1c0c47aa940de90'8889[dependencies.transaction-pool]90git = 'https://github.com/paritytech/substrate.git'91package = 'substrate-transaction-pool'92rev = '3ba0f2a2dbd37c31851a0ff1c1c0c47aa940de90'9394[package]95authors = ['Anonymous']96build = 'build.rs'97edition = '2018'98name = 'node-template'99version = '2.0.0'100101[[bin]]102name = 'node-template'103path = 'src/main.rs'