1
0
Fork 0

Add license header

This commit is contained in:
Daniele Tricoli 2018-11-19 01:44:11 +01:00
parent 453f98f76f
commit 58017df2e0
4 changed files with 21 additions and 1 deletions

View File

@ -1,3 +1,8 @@
// Copyright © 2018 Daniele Tricoli <eriol@mornie.org>.
// All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// A simplified parser for zeroc configuration.
// This parser is stricter of the default one, for example spaces in properties
// are not allowed.
@ -24,7 +29,7 @@ VALUE = @{
| "\\"
| "{"
| "}"
| ";"
| ";"
| "<"
| ">"
| "&"

View File

@ -1,3 +1,8 @@
// Copyright © 2018 Daniele Tricoli <eriol@mornie.org>.
// All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
#[macro_use]
extern crate pest_derive;

View File

@ -1 +1,6 @@
// Copyright © 2018 Daniele Tricoli <eriol@mornie.org>.
// All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
pub mod slice;

View File

@ -1,3 +1,8 @@
// Copyright © 2016-2018 Daniele Tricoli <eriol@mornie.org>.
// All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
use std::collections::BTreeMap;
use indexmap::IndexMap;