-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
61 lines (60 loc) · 4.42 KB
/
Copy pathPackage.swift
File metadata and controls
61 lines (60 loc) · 4.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// swift-tools-version:6.2
// Generated by scripts/lib_publish/publish-libraries.py. Do not edit by hand.
import PackageDescription
let package = Package(
name: "moot-memory",
platforms: [
.macOS(.v26),
.iOS(.v26),
],
products: [
.library(name: "CorpusKit", targets: ["CorpusKit"]),
.library(name: "CorpusKitProviders", targets: ["CorpusKitProviders"]),
.library(name: "LocusKit", targets: ["LocusKit"]),
.library(name: "VectorKit", targets: ["VectorKit"])
],
dependencies: [
.package(url: "https://github.com/codedaptive/moot-core.git", exact: "1.0.32"),
.package(url: "https://github.com/codedaptive/moot-semantics.git", exact: "1.0.32"),
.package(url: "https://github.com/codedaptive/moot-system.git", exact: "1.0.32"),
.package(url: "https://github.com/apple/swift-crypto.git", from: "4.0.0")
],
targets: [
.target(
name: "CorpusKit",
dependencies: [.product(name: "SubstrateTypes", package: "moot-core"), .product(name: "SubstrateLib", package: "moot-core"), .product(name: "SubstrateML", package: "moot-core"), .product(name: "EngramLib", package: "moot-core"), .product(name: "EideticLib", package: "moot-semantics"), .product(name: "IntellectusLib", package: "moot-core"), .product(name: "PersistenceKit", package: "moot-system"), .product(name: "PersistenceKitInMemory", package: "moot-system"), .product(name: "PersistenceKitSQLite", package: "moot-system"), .product(name: "ConvergenceKit", package: "moot-system"), "VectorKit", .product(name: "QueueKit", package: "moot-system"), .product(name: "Crypto", package: "swift-crypto")],
path: "packages/kits/CorpusKit/Sources/CorpusKit"
),
.target(
name: "CorpusKitProviders",
dependencies: ["CorpusKit", .product(name: "SubstrateTypes", package: "moot-core"), .product(name: "SubstrateKernel", package: "moot-core"), .product(name: "SubstrateML", package: "moot-core"), .product(name: "EngramLib", package: "moot-core"), "VectorKit", .product(name: "LatticeLib", package: "moot-semantics")],
path: "packages/kits/CorpusKit/Sources/CorpusKitProviders"
),
.testTarget(
name: "CorpusKitTests",
dependencies: ["CorpusKit", "CorpusKitProviders", "VectorKit", .product(name: "PersistenceKitInMemory", package: "moot-system"), .product(name: "PersistenceKitSQLite", package: "moot-system"), .product(name: "SubstrateTypes", package: "moot-core"), .product(name: "SubstrateLib", package: "moot-core"), .product(name: "IntellectusLib", package: "moot-core"), .product(name: "LatticeLib", package: "moot-semantics")],
path: "packages/kits/CorpusKit/Tests/CorpusKitTests",
resources: [.copy("../SharedVectors")]
),
.target(
name: "LocusKit",
dependencies: [.product(name: "SubstrateLib", package: "moot-core"), .product(name: "SubstrateTypes", package: "moot-core"), .product(name: "SubstrateKernel", package: "moot-core"), .product(name: "SubstrateML", package: "moot-core"), .product(name: "PersistenceKit", package: "moot-system"), .product(name: "IntellectusLib", package: "moot-core"), .product(name: "LatticeLib", package: "moot-semantics")],
path: "packages/kits/LocusKit/Sources/LocusKit"
),
.testTarget(
name: "LocusKitTests",
dependencies: ["LocusKit", .product(name: "PersistenceKitSQLite", package: "moot-system"), .product(name: "PersistenceKitInMemory", package: "moot-system"), .product(name: "IntellectusLib", package: "moot-core")],
path: "packages/kits/LocusKit/Tests/LocusKitTests"
),
.target(
name: "VectorKit",
dependencies: [.product(name: "EngramLib", package: "moot-core"), .product(name: "SubstrateTypes", package: "moot-core"), .product(name: "SubstrateML", package: "moot-core"), .product(name: "PersistenceKit", package: "moot-system"), .product(name: "IntellectusLib", package: "moot-core")],
path: "packages/kits/VectorKit/Sources/VectorKit"
),
.testTarget(
name: "VectorKitTests",
dependencies: ["VectorKit", .product(name: "PersistenceKitInMemory", package: "moot-system"), .product(name: "PersistenceKitSQLite", package: "moot-system"), .product(name: "IntellectusLib", package: "moot-core")],
path: "packages/kits/VectorKit/Tests/VectorKitTests"
)
]
)