Skip to content

Commit e6fda0e

Browse files
authored
Fix package dependency declarations in package manifest (#34)
* Fix declaration of mlx-swift-lm package dependency Xcode seems to have an issue with trailing slash and/or main branch * Drop .git suffixes from dependency declarations * Sort package dependencies ascending * Revert mlx-swift-lm to pulling from main branch, to match project recommendations
1 parent 2d71561 commit e6fda0e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Package.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ let package = Package(
2828
.default(enabledTraits: []),
2929
],
3030
dependencies: [
31-
.package(url: "https://github.com/swiftlang/swift-syntax.git", from: "600.0.0"),
32-
.package(url: "https://github.com/mattt/JSONSchema.git", from: "1.3.0"),
33-
.package(url: "https://github.com/mattt/EventSource.git", from: "1.3.0"),
34-
.package(url: "https://github.com/mattt/PartialJSONDecoder.git", from: "1.0.0"),
35-
.package(url: "https://github.com/ml-explore/mlx-swift-lm/", branch: "main"),
3631
.package(url: "https://github.com/huggingface/swift-transformers", from: "1.0.0"),
32+
.package(url: "https://github.com/mattt/EventSource", from: "1.3.0"),
33+
.package(url: "https://github.com/mattt/JSONSchema", from: "1.3.0"),
3734
.package(url: "https://github.com/mattt/llama.swift", .upToNextMajor(from: "1.6818.0")),
35+
.package(url: "https://github.com/mattt/PartialJSONDecoder", from: "1.0.0"),
36+
.package(url: "https://github.com/ml-explore/mlx-swift-lm", branch: "main"),
37+
.package(url: "https://github.com/swiftlang/swift-syntax", from: "600.0.0"),
3838
],
3939
targets: [
4040
.target(

0 commit comments

Comments
 (0)