2016-12-21 16:55:00 +00:00
|
|
|
// Copyright 2016 Mozilla
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2017-01-06 15:15:57 +00:00
|
|
|
#![allow(dead_code)]
|
|
|
|
|
|
|
|
extern crate ordered_float;
|
|
|
|
extern crate num;
|
|
|
|
|
2017-01-11 21:51:34 +00:00
|
|
|
pub mod symbols;
|
2017-01-06 15:15:57 +00:00
|
|
|
pub mod types;
|
2017-01-26 00:13:56 +00:00
|
|
|
pub mod utils;
|
2017-01-06 15:15:57 +00:00
|
|
|
|
|
|
|
pub mod parse {
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/edn.rs"));
|
|
|
|
}
|
2017-01-25 22:06:19 +00:00
|
|
|
|
|
|
|
pub use self::types::Value;
|
|
|
|
pub use self::symbols::{Keyword, NamespacedKeyword, PlainSymbol, NamespacedSymbol};
|