Skip to content

Commit

Permalink
Replicant Transport No longer requires Shapeshifter
Browse files Browse the repository at this point in the history
  • Loading branch information
consuelita committed Aug 6, 2021
1 parent 9450380 commit 092f571
Show file tree
Hide file tree
Showing 4 changed files with 723 additions and 32 deletions.
60 changes: 30 additions & 30 deletions Package.resolved
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
{
"object": {
"pins": [
{
"package": "Chord",
"repositoryURL": "https://github.com/OperatorFoundation/Chord",
"state": {
"branch": null,
"revision": "25e5267c7dde0df1f7bcc285979f6302d46f7101",
"version": "0.0.12"
}
},
{
"package": "Datable",
"repositoryURL": "https://github.com/OperatorFoundation/Datable.git",
"state": {
"branch": null,
"revision": "808ab1b2c021be3d2950ec2c2894cd48d532d592",
"version": "3.0.3"
"revision": "e2163df049181fc3ec710a4647f0109563cf490f",
"version": "3.0.5"
}
},
{
Expand All @@ -19,67 +28,58 @@
"version": "0.1.2"
}
},
{
"package": "KeychainLinux",
"repositoryURL": "https://github.com/OperatorFoundation/KeychainLinux.git",
"state": {
"branch": null,
"revision": "9be9dbf0a3492444a770ef22da18d0ff544713f7",
"version": "0.1.1"
}
},
{
"package": "Monolith",
"repositoryURL": "https://github.com/OperatorFoundation/Monolith.git",
"state": {
"branch": null,
"revision": "e351a3d46a43e426783c003ba521ca2edde7f710",
"version": "1.0.1"
"revision": "2f171762cc784ce5d7519c51e5590a40aa83f349",
"version": "1.0.2"
}
},
{
"package": "Song",
"repositoryURL": "https://github.com/OperatorFoundation/Song.git",
"state": {
"branch": null,
"revision": "ac3cabb2fd470091364706bb197c4de6295a05e6",
"version": "0.1.4"
"revision": "cd8ba924a7862c61cd8bf06154410d7e21a0381e",
"version": "0.1.7"
}
},
{
"package": "swift-ast",
"repositoryURL": "https://github.com/yanagiba/swift-ast",
"repositoryURL": "https://github.com/OperatorFoundation/swift-ast.git",
"state": {
"branch": null,
"revision": "e8507d78b32dbd33ea5ea975bbbc82b7613870a1",
"version": "0.19.9"
"revision": "02a312f755760d583170eea8803c012776f68de1",
"version": "0.19.10"
}
},
{
"package": "swift-crypto",
"repositoryURL": "https://github.com/apple/swift-crypto.git",
"package": "swift-log",
"repositoryURL": "https://github.com/apple/swift-log.git",
"state": {
"branch": null,
"revision": "9680b7251cd2be22caaed8f1468bd9e8915a62fb",
"version": "1.1.2"
"revision": "5d66f7ba25daf4f94100e7022febf3c75e37a6c7",
"version": "1.4.2"
}
},
{
"package": "swift-log",
"repositoryURL": "https://github.com/apple/swift-log.git",
"package": "SwiftQueue",
"repositoryURL": "https://github.com/OperatorFoundation/SwiftQueue.git",
"state": {
"branch": null,
"revision": "173f567a2dfec11d74588eea82cecea555bdc0bc",
"version": "1.4.0"
"revision": "eaa39c586fddb49ad1e0e8b5b3e9b0aaf0b3be82",
"version": "0.1.0"
}
},
{
"package": "SwiftQueue",
"repositoryURL": "https://github.com/OperatorFoundation/SwiftQueue.git",
"package": "Transmission",
"repositoryURL": "https://github.com/OperatorFoundation/Transmission.git",
"state": {
"branch": null,
"revision": "0e5979acbb104516a427bb2bb09debc50ca100b4",
"version": "0.0.3"
"revision": "fa753bdc15c146d84688607096827618584af5aa",
"version": "0.2.3"
}
},
{
Expand Down
16 changes: 14 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ let package = Package(
from: "1.0.2"),
.package(url: "https://github.com/OperatorFoundation/Datable.git",
from: "3.0.4"),
.package(url: "https://github.com/OperatorFoundation/Transmission.git", from: "0.2.3"),
.package(url: "https://github.com/OperatorFoundation/Transport.git",
from: "2.3.5"),
.package(url: "https://github.com/OperatorFoundation/SwiftQueue.git",
Expand All @@ -28,7 +29,12 @@ let package = Package(
.target(
name: "ReplicantSwift",
dependencies: [
"Monolith", "Datable", "Transport", "Song", "SwiftQueue",
"Datable",
"Monolith",
"Song",
"SwiftQueue",
"Transmission",
"Transport",
.product(name: "Logging", package: "swift-log"),
.product(name: "Keychain", package: "Keychain"),
]
Expand Down Expand Up @@ -56,6 +62,7 @@ let package = Package(
from: "1.0.2"),
.package(url: "https://github.com/OperatorFoundation/Datable.git",
from: "3.0.4"),
.package(url: "https://github.com/OperatorFoundation/TransmissionLinux.git", from: "0.2.2"),
.package(url: "https://github.com/OperatorFoundation/Transport.git",
from: "2.3.5"),
.package(url: "https://github.com/OperatorFoundation/SwiftQueue.git",
Expand All @@ -64,7 +71,12 @@ let package = Package(
.target(
name: "ReplicantSwift",
dependencies: [
"Monolith", "Datable", "Transport", "Song", "SwiftQueue",
"Datable",
"Monolith",
"Song",
"SwiftQueue",
"TransmissionLinux",
"Transport",
.product(name: "Logging", package: "swift-log"),
.product(name: "KeychainLinux", package: "KeychainLinux"),
.product(name: "Crypto", package: "swift-crypto")
Expand Down
Loading

0 comments on commit 092f571

Please sign in to comment.