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
mod private {}
crate ::mod_interface!
{
/// Interaction module with the `cargo` utilities.
layer cargo;
orphan use super ::cargo;
/// Function and structures to work with collections.
use ::collection_tools;
/// Errors handling.
use crate ::error;
/// Operate over files.
layer files;
orphan use super ::files;
/// Http requests.
layer http;
orphan use super ::http;
/// Iterating things.
layer iter;
orphan use super ::iter;
/// Work with paths.
layer macros;
orphan use super ::macros;
/// Work with paths.
layer path;
orphan use super ::path;
/// Tools for working with dependencies graph.
layer graph;
orphan use super ::graph;
/// Git interaction module that enables seamless integration and management of version control workflows.
layer git;
orphan use super ::git;
/// The parse function parses an input string into a `HashMap` where the keys are `String` and the values are of type `Value`.
layer query;
orphan use super ::query;
/// Tools for parsing and extracting information from url.
layer url;
orphan use super ::url;
/// Tools for printing a tree
layer tree;
orphan use super ::tree;
/// Repository tools.
layer repository;
orphan use super ::repository;
/// Semantic versioning utilities.
layer semver_utils;
orphan use super ::semver_utils;
exposed use ::former ::
{
Former,
};
exposed use ::component_model ::
{
Assign,
};
}