Skip to content

Commit

Permalink
Fix build error in Actomaton-Basic
Browse files Browse the repository at this point in the history
  • Loading branch information
inamiy committed Jun 12, 2024
1 parent fe41bb4 commit 3bd1ae8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 14 deletions.
1 change: 0 additions & 1 deletion Examples/Actomaton-Basic.swiftpm/CounterAppView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ struct CounterAppView: View

var body: some View
{
// IMPORTANT: Pass `Store.Proxy` to children.
CounterView(store: self.store)
}
}
14 changes: 7 additions & 7 deletions Examples/Actomaton-Basic.swiftpm/Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"pins": [
{
"package": "Actomaton",
"repositoryURL": "https://github.com/inamiy/Actomaton",
"repositoryURL": "https://github.com/Actomaton/Actomaton",
"state": {
"branch": null,
"revision": "e51e5ea17f3fb31f4d98eaab1d044f33d4c02386",
Expand All @@ -15,26 +15,26 @@
"repositoryURL": "https://github.com/pointfreeco/swift-case-paths",
"state": {
"branch": null,
"revision": "d226d167bd4a68b51e352af5655c92bce8ee0463",
"version": "0.7.0"
"revision": "fc45e7b2cfece9dd80b5a45e6469ffe67fe67984",
"version": "0.14.1"
}
},
{
"package": "swift-custom-dump",
"repositoryURL": "https://github.com/pointfreeco/swift-custom-dump",
"state": {
"branch": null,
"revision": "51698ece74ecf31959d3fa81733f0a5363ef1b4e",
"version": "0.3.0"
"revision": "0a5bff05fe01dcd513932ed338a4efad8268b803",
"version": "0.11.2"
}
},
{
"package": "xctest-dynamic-overlay",
"repositoryURL": "https://github.com/pointfreeco/xctest-dynamic-overlay",
"state": {
"branch": null,
"revision": "50a70a9d3583fe228ce672e8923010c8df2deddd",
"version": "0.2.1"
"revision": "50843cbb8551db836adec2290bb4bc6bac5c1865",
"version": "0.9.0"
}
}
]
Expand Down
11 changes: 5 additions & 6 deletions Examples/Actomaton-Basic.swiftpm/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,16 @@ let package = Package(
)
],
dependencies: [
.package(url: "https://github.com/inamiy/Actomaton", from: "0.8.0")
.package(url: "https://github.com/Actomaton/Actomaton", "0.8.0"..<"1.0.0")
],
targets: [
.executableTarget(
name: "AppModule",
dependencies: [
.productItem(name: "ActomatonUI", package: "Actomaton", condition: nil)
.product(name: "Actomaton", package: "actomaton"),
.product(name: "ActomatonUI", package: "actomaton")
],
path: ".",
swiftSettings: [.unsafeFlags(["-warn-concurrency"], .when(configuration: .debug))]
path: "."
)
]

)
)

0 comments on commit 3bd1ae8

Please sign in to comment.