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
mod private {}
crate ::mod_interface!
{
/// Errors handling.
use crate ::error;
/// Rust toolchain channel: stable/nightly.
layer channel;
orphan use super ::channel;
/// Source code.
layer code;
orphan use super ::code;
/// Dependency of a package.
layer dependency;
orphan use super ::dependency;
/// Compare two crate archives and create a difference report.
layer diff;
orphan use super ::diff;
/// Operation with features
layer features;
orphan use super ::features;
/// Paths and files.
layer files;
orphan use super ::files;
/// Git.
layer git;
orphan use super ::git;
/// To manipulate manifest data.
layer manifest;
orphan use super ::manifest;
/// Rust build optimization: debug/release
layer optimization;
orphan use super ::optimization;
/// Offers capabilities for package management, facilitating the handling and organization of packages.
layer package;
orphan use super ::package;
/// Md's extension for workspace.
layer package_md_extension;
orphan use super ::package_md_extension;
/// Provides a set of functionalities for handling and manipulating packages.
layer packages;
orphan use super ::packages;
/// Handles operations related to packed Rust crates
layer packed_crate;
orphan use super ::packed_crate;
/// Progress bar staff.
layer progress_bar;
orphan use super ::progress_bar;
/// Publish.
layer publish;
orphan use super ::publish;
/// Publish reason types.
layer publish_reason;
orphan use super ::publish_reason;
/// Stale dependency tracking.
layer stale_dependency;
orphan use super ::stale_dependency;
/// Dependency staleness detection.
layer staleness;
orphan use super ::staleness;
/// Facade for `preatytable` crate.
layer table;
orphan use super ::table;
/// Operations with tests
layer test;
orphan use super ::test;
/// Provides an opportunity to work with versions.
layer version;
orphan use super ::version;
/// It features the ability to interact with workspaces, manage their participants, and other functionalities.
layer workspace;
orphan use super ::workspace;
/// Workspace' graph.
layer workspace_graph;
orphan use super ::workspace_graph;
/// Md's extension for workspace.
layer workspace_md_extension;
orphan use super ::workspace_md_extension;
/// Packages of workspace.
layer workspace_package;
orphan use super ::workspace_package;
}