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
mod lowlevel {
mod arguments;
mod command;
mod response;
pub mod write_to;
pub use arguments::{Argument, Arguments, DelimitedArguments};
pub use command::Command;
pub use response::{HardcodedError, Response};
}
mod generated {
pub mod translate;
pub mod types;
}
mod highlevel {
pub use crate::generated::types::{Command, Success};
pub use crate::response::{HardcodedError, Response};
}
mod translate {
pub use crate::generated::translate::{lower_command, raise_command};
pub use crate::translate_response::{lower_response, raise_response};
}
mod parser {
mod arguments_parser;
pub mod command_grammar;
pub mod command_parser;
pub mod common;
pub mod response_grammar;
pub mod response_parser;
}
mod response;
mod serde;
mod translate_response;
mod translate_util;
pub use generated::translate::*;
pub use generated::types::*;
pub use response::*;
pub use serde::*;