We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 263f09a commit b04b336Copy full SHA for b04b336
src/build.rs
@@ -7,10 +7,10 @@ use std::path::PathBuf;
7
use std::vec::Vec;
8
9
#[derive(Clone)]
10
-pub struct CratePatch {
11
- pub name: String,
12
- pub uri: String,
13
- pub branch: String,
+pub(crate) struct CratePatch {
+ pub(crate) name: String,
+ pub(crate) uri: String,
+ pub(crate) branch: String,
14
}
15
16
/// Directory in the [`Workspace`](struct.Workspace.html) where builds can be executed.
src/prepare.rs
@@ -142,7 +142,7 @@ impl<'a> Prepare<'a> {
142
143
144
145
-pub struct TomlTweaker<'a> {
+struct TomlTweaker<'a> {
146
krate: &'a Crate,
147
table: Table,
148
dir: Option<&'a Path>,
0 commit comments