1# Copyright 2012 Jeffrey Kegler 2# This file is part of Marpa::XS. Marpa::XS is free software: you can 3# redistribute it and/or modify it under the terms of the GNU Lesser 4# General Public License as published by the Free Software Foundation, 5# either version 3 of the License, or (at your option) any later version. 6# 7# Marpa::XS is distributed in the hope that it will be useful, 8# but WITHOUT ANY WARRANTY; without even the implied warranty of 9# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 10# Lesser General Public License for more details. 11# 12# You should have received a copy of the GNU Lesser 13# General Public License along with Marpa::XS. If not, see 14# http://www.gnu.org/licenses/. 15 16# This file is editable. It is used during the 17# configuration process to set up version information. 18 19package Marpa::XS; 20 21use 5.010; 22 23use strict; 24use warnings; 25 26%Marpa::XS::VERSION_FOR_CONFIG = ( 27 'Scalar::Util' => 1.21, 28 'List::Util' => 1.21, 29 'Carp' => 1.08, 30 'Data::Dumper' => '2.125', 31 'Storable' => 2.21, 32 'PPI' => '1.206', 33 'Test::Weaken' => '3.004000', 34 'Task::Weaken' => '0', 35 'ExtUtils::PkgConfig' => 1.12, 36 'Module::Build' => 0.3601, 37 'ExtUtils::CBuilder' => 0.27, 38 'Test::More' => 0.94, 39 'Glib' => 1.223, 40); 41 421; 43