File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ public struct ResolvedPackage {
40
40
public let products : [ ResolvedProduct ]
41
41
42
42
/// The enabled traits of this package.
43
- package let enabledTraits : Set < String >
43
+ public let enabledTraits : Set < String >
44
44
45
45
/// The dependencies of the package.
46
46
public let dependencies : [ PackageIdentity ]
Original file line number Diff line number Diff line change @@ -34,10 +34,10 @@ public enum PluginAction {
34
34
}
35
35
36
36
public struct PluginTool {
37
- let path : AbsolutePath
38
- let triples : [ String ] ?
37
+ public let path : AbsolutePath
38
+ public let triples : [ String ] ?
39
39
40
- init ( path: AbsolutePath , triples: [ String ] ? = nil ) {
40
+ public init ( path: AbsolutePath , triples: [ String ] ? = nil ) {
41
41
self . path = path
42
42
self . triples = triples
43
43
}
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ public class Workspace {
129
129
let repositoryManager : RepositoryManager
130
130
131
131
/// The registry manager.
132
- let registryClient : RegistryClient
132
+ public let registryClient : RegistryClient
133
133
134
134
/// Registry based dependencies downloads manager used for interacting with registry based dependencies
135
135
let registryDownloadsManager : RegistryDownloadsManager
You can’t perform that action at this time.
0 commit comments