Skip to content

Commit 2adca50

Browse files
Depend on and export DependenciesMacros (#2586)
Co-authored-by: Stephen Celis <[email protected]>
1 parent 44ae74e commit 2adca50

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

ComposableArchitecture.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

[email protected]

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ let package = Package(
2626
.package(url: "https://github.com/pointfreeco/swift-case-paths", from: "1.1.0"),
2727
.package(url: "https://github.com/pointfreeco/swift-concurrency-extras", from: "1.1.0"),
2828
.package(url: "https://github.com/pointfreeco/swift-custom-dump", from: "1.0.0"),
29-
.package(url: "https://github.com/pointfreeco/swift-dependencies", from: "1.0.0"),
29+
.package(url: "https://github.com/pointfreeco/swift-dependencies", from: "1.1.0"),
3030
.package(url: "https://github.com/pointfreeco/swift-identified-collections", from: "1.0.0"),
3131
.package(url: "https://github.com/pointfreeco/swift-macro-testing", from: "0.2.0"),
3232
.package(url: "https://github.com/pointfreeco/swiftui-navigation", from: "1.1.0"),
@@ -42,6 +42,7 @@ let package = Package(
4242
.product(name: "ConcurrencyExtras", package: "swift-concurrency-extras"),
4343
.product(name: "CustomDump", package: "swift-custom-dump"),
4444
.product(name: "Dependencies", package: "swift-dependencies"),
45+
.product(name: "DependenciesMacros", package: "swift-dependencies"),
4546
.product(name: "IdentifiedCollections", package: "swift-identified-collections"),
4647
.product(name: "OrderedCollections", package: "swift-collections"),
4748
.product(name: "SwiftUINavigationCore", package: "swiftui-navigation"),

Sources/ComposableArchitecture/Internal/Exports.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,8 @@
44
@_exported import ConcurrencyExtras
55
@_exported import CustomDump
66
@_exported import Dependencies
7+
#if swift(>=5.9)
8+
@_exported import DependenciesMacros
9+
#endif
710
@_exported import IdentifiedCollections
811
@_exported import SwiftUINavigationCore

0 commit comments

Comments
 (0)