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
use ExitCode;
use Args;
// ------------------------------------------------------------------------------------------------
// Public Types
// ------------------------------------------------------------------------------------------------
/// Show tool and library versions.
///
/// This command shows more information than the simple `--version` global argument and is useful
/// for debugging.
///
/// ```text
/// ❯ sdml versions
/// SDML CLI: 0.2.7
/// SDML grammar: 0.2.16
/// Tree-Sitter ABI: 14
/// ```
///
pub ;
// ------------------------------------------------------------------------------------------------
// Implementations
// ------------------------------------------------------------------------------------------------
const CLI_VERSION: &str = env!;