Files
LCEssentials/Package.swift

24 lines
493 B
Swift
Raw Normal View History

2025-03-23 00:27:49 -03:00
// swift-tools-version: 6.0
import PackageDescription
let package = Package(
name: "LCEssentials",
products: [
.library(
name: "LCEssentials",
targets: ["LCEssentials"]),
],
2025-07-05 12:34:25 -03:00
dependencies: [
.package(
url: "http://git.loverde.com.br:3000/git/LCECryptoKit.git",
exact: "1.0.2"
)
],
2025-03-23 00:27:49 -03:00
targets: [
.target(
2025-07-05 12:34:25 -03:00
name: "LCEssentials",
dependencies: ["LCECryptoKit"]),
2025-03-23 00:27:49 -03:00
]
)