ion 0.10.0

*.ion file parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[macro_use]
mod ion;
mod parser;

pub use self::ion::*;
pub use self::parser::*;

#[cfg(feature = "dictionary-indexmap")]
pub type Dictionary = indexmap::IndexMap<String, Value>;
#[cfg(not(feature = "dictionary-indexmap"))]
pub type Dictionary = std::collections::BTreeMap<String, Value>;

pub type Row = Vec<Value>;