Skip to content
This repository has been archived by the owner on Aug 27, 2023. It is now read-only.

Add dictionary to retrieve device by identifier #17

Merged
merged 1 commit into from
Jul 14, 2022
Merged
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
8 changes: 7 additions & 1 deletion Generator/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,20 @@ let package = Package(
dependencies: [
.package(url: "https://github.com/scinfu/SwiftSoup", .upToNextMajor(from: "2.0.0")),
.package(url: "https://github.com/ptrkstr/Slab", .upToNextMajor(from: "1.0.0")),
.package(url: "https://github.com/apple/swift-collections", .upToNextMajor(from: "1.0.0")),
.package(path: "../") // Devices
],
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 this package depends on.
.executableTarget(
name: "Generator",
dependencies: ["Devices", "SwiftSoup", "Slab"],
dependencies: [
"Devices",
"SwiftSoup",
"Slab",
.product(name: "Collections", package: "swift-collections")
],
resources: [
.process("Resources")
]
Expand Down
Loading