1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
//! # mico
//!
//! This library implements a parser and emitter for `mico` (minimalistic config file format).
//!
//! Format example:
//!
//! ```plaintext
//! Name: mico
//! Description: minimalistic config file format
//!
//! Benefits
//! - easy to read and write for everyone
//! - ludicrously simple parsing logic (roughly 30 lines of code)
//! ```
//!
//! ## Parsing and emitting mico
//!
//! There are two convenience functions to parse and emit:
//!
//! ```rust
//! use mico::Mapping;
//!
//! // parse string
//! let mappings = mico::from_str("foo: bar");
//! assert_eq!(mappings[0].key, "foo");
//! assert_eq!(mappings[0].value, "bar".into());
//!
//! // emit mappings
//! let mappings = [Mapping::new("foo", "bar")];
//! assert_eq!(mico::to_string(&mappings, 0), "foo: bar\n");
//! ```
//!
//! ## Notes
//!
//! `mico` is meant for people to write simple config files very fast. There is no
//! indentation, escaping or quoting to worry about, so any text line can simply be
//! pasted to a `mico` file without further editing.
//!
//! There are only two types:
//!
//! 1. A mapping from key to string:
//!
//! ```plaintext
//! key: value
//! ```
//!
//! 2. A mapping from key to a list of strings
//!
//! ```plaintext
//! key
//! - value 1
//! - value 2
//! ```
//!
//! Here is a mico example:
//!
//! ```plaintext
//! foo: bar
//! indentation is possible: but does not matter
//! white space : will be trimmed
//! this is a key:this: is:a :value
//! empty string:
//!
//! empty lines: will be ignored
//!
//! list ...
//! - keys must not include a colon
//! - items start with '-'
//!
//! this is an empty list, because this line does not include a colon
//!
//! this is no list because of the colon at the end of this line:
//! - this is an empty list
//! ```
//!
//! Here is the corresponding JSON example:
//!
//! ```json
//! [
//! { "foo": "bar" },
//! { "indentation is possible": "but does not matter" },
//! { "white space": "will be trimmed" },
//! { "this is a key": "this: is:a :value" },
//! { "empty string": "" },
//! { "empty lines": "will be ignored" },
//! { "list ...": ["keys must not include a colon", "items start with '-'"] },
//! { "This is an empty list, because this line does not include a colon": [] },
//! { "This is no list because of the colon at the end of this line:": "" },
//! { "- this is an empty list": [] }
//! ]
//! ```
use Cursor;
pub use Emitter;
pub use Parser;
pub type List = ;
impl_into_string_value!;