Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
249 changes: 101 additions & 148 deletions 249 Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 27 additions & 11 deletions 38 Package.swift
Original file line number Diff line number Diff line change
@@ -1,32 +1,48 @@
// swift-tools-version:5.0
// swift-tools-version:5.7.1
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "ModuleInterface",
products: [
.executable(name: "moduleinterface", targets: ["ModuleInterface"]),
.executable(
name: "moduleinterface",
targets: [
"ModuleInterface",
]
),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
.package(url: "https://github.com/jpsim/SourceKitten.git", from: "0.26.0"),
.package(url: "https://github.com/Carthage/Commandant.git", from: "0.15.0"),
.package(url: "https://github.com/onevcat/Rainbow", from: "3.0.0"),
.package(url: "https://github.com/eneko/SourceDocs.git", from: "0.2.0"),
.package(url: "https://github.com/thoughtbot/Curry.git", from: "4.0.1"),
.package(url: "https://github.com/nicklockwood/SwiftFormat", from: "0.35.8"),
.package(url: "https://github.com/jpsim/SourceKitten.git", exact: "0.32.0"),
.package(url: "https://github.com/Carthage/Commandant.git", exact: "0.18.0"),
.package(url: "https://github.com/onevcat/Rainbow", exact: "3.2.0"),
.package(url: "https://github.com/eneko/SourceDocs.git", exact: "2.0.1"),
.package(url: "https://github.com/thoughtbot/Curry.git", exact: "5.0.0"),
.package(url: "https://github.com/nicklockwood/SwiftFormat", exact: "0.50.3"),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
.target(
.executableTarget(
name: "ModuleInterface",
dependencies: ["SourceKittenFramework", "Commandant", "Rainbow", "Curry", "SwiftFormat"]
dependencies: [
.product(
name: "SourceKittenFramework",
package: "SourceKitten"
),
"Commandant",
"Rainbow",
"Curry",
"SwiftFormat",
]
),
.testTarget(
name: "ModuleInterfaceTests",
dependencies: ["ModuleInterface"]
dependencies: [
"ModuleInterface",
]
),
]
)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.