24 lines
493 B
Swift
24 lines
493 B
Swift
// swift-tools-version: 6.0
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "LCEssentials",
|
|
products: [
|
|
.library(
|
|
name: "LCEssentials",
|
|
targets: ["LCEssentials"]),
|
|
],
|
|
dependencies: [
|
|
.package(
|
|
url: "http://git.loverde.com.br:3000/git/LCECryptoKit.git",
|
|
exact: "1.0.2"
|
|
)
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "LCEssentials",
|
|
dependencies: ["LCECryptoKit"]),
|
|
|
|
]
|
|
)
|