ucg/src/lib.rs

52 lines
1.5 KiB
Rust
Raw Normal View History

2017-07-11 20:29:54 -05:00
// Copyright 2017 Jeremy Wall <jeremy@marzhillstudios.com>
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// #![feature(trace_macros,log_syntax)]
2017-12-24 15:24:06 -05:00
//! # ucg, A universal configuration grammar.
//!
2019-01-04 10:16:57 -06:00
//! Language reference is at [https://ucg.marzhillstudios.com/reference](https://ucg.marzhillstudios.com/reference)
2018-03-15 19:08:33 -05:00
// The following is necessary to allow the macros in tokenizer and parse modules
// to succeed.
#![recursion_limit = "128"]
#[macro_use]
extern crate abortable_parser;
extern crate base64;
extern crate regex;
extern crate serde_json;
2018-08-25 18:38:44 -05:00
extern crate serde_yaml;
extern crate simple_error;
extern crate toml;
extern crate unicode_segmentation;
extern crate xml;
#[macro_use]
pub mod ast;
#[macro_use]
pub mod tokenizer;
pub mod build;
pub mod convert;
pub mod error;
pub mod io;
pub mod iter;
2018-05-14 21:34:38 -05:00
pub mod parse;
2018-12-06 12:23:52 -06:00
pub use crate::ast::Expression;
pub use crate::ast::Statement;
pub use crate::ast::Value;
2018-12-31 10:10:19 -06:00
pub use crate::build::FileBuilder;
2018-12-06 12:23:52 -06:00
pub use crate::build::Val;
pub use crate::parse::parse;