mirror of
https://github.com/GayPizzaSpecifications/stable-diffusion-rpc.git
synced 2025-08-03 21:41:31 +00:00
Formatting, linting, and hopefully a CI build.
This commit is contained in:
@ -16,17 +16,22 @@ let package = Package(
|
||||
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.2.0")
|
||||
],
|
||||
targets: [
|
||||
.target(name: "StableDiffusionProtos", dependencies: [
|
||||
.product(name: "SwiftProtobuf", package: "swift-protobuf"),
|
||||
.product(name: "GRPC", package: "grpc-swift")
|
||||
]),
|
||||
.target(name: "StableDiffusionCore", dependencies: [
|
||||
.product(name: "StableDiffusion", package: "ml-stable-diffusion"),
|
||||
.target(name: "StableDiffusionProtos")
|
||||
]),
|
||||
.executableTarget(name: "StableDiffusionServer", dependencies: [
|
||||
.product(name: "StableDiffusion", package: "ml-stable-diffusion"),
|
||||
.product(name: "SwiftProtobuf", package: "swift-protobuf"),
|
||||
.product(name: "GRPC", package: "grpc-swift"),
|
||||
.target(name: "StableDiffusionProtos"),
|
||||
.target(name: "StableDiffusionCore"),
|
||||
.product(name: "ArgumentParser", package: "swift-argument-parser")
|
||||
]),
|
||||
.target(name: "StableDiffusionProtos", dependencies: [
|
||||
.product(name: "SwiftProtobuf", package: "swift-protobuf"),
|
||||
.product(name: "GRPC", package: "grpc-swift")
|
||||
]),
|
||||
.executableTarget(name: "TestStableDiffusionClient", dependencies: [
|
||||
.target(name: "StableDiffusionProtos"),
|
||||
.product(name: "GRPC", package: "grpc-swift")
|
||||
|
Reference in New Issue
Block a user