-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* build: fix dependencies We need this to use the new initialiser `init(url:exact:)` for updating the standalone build to match the CI build. When building in CI, we would build against swift-crypto 2.5.0 as per update-checkout-config.json in apple/swift. Adjust the standalone builds to match. When building on CI, we would build against swift-argument-parser 1.2.2 as per update-checkout-config.json in apple/swift. Make the standalone builds match. * - Update Package.swift for Swift 5.6 minimum (as already required by NIO). - Remove deprecated usages and bump the dependency version requirements for NIO, ArgumentParser, and SwiftCrypto (most especially the latter so that updates in the 2.x series are available). - Remove old #if swift conditionals no longer required - Package.resolved now uses the version 2 format * The platform-specific handling for conforming Array to LMDBData is still required. --------- Co-authored-by: Gwynne Raskind <[email protected]>
- Loading branch information
Showing
3 changed files
with
117 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,79 +1,95 @@ | ||
{ | ||
"object": { | ||
"pins": [ | ||
{ | ||
"package": "swift-argument-parser", | ||
"repositoryURL": "https://github.com/apple/swift-argument-parser", | ||
"state": { | ||
"branch": null, | ||
"revision": "e394bf350e38cb100b6bc4172834770ede1b7232", | ||
"version": "1.0.3" | ||
} | ||
}, | ||
{ | ||
"package": "cmark-gfm", | ||
"repositoryURL": "https://github.com/apple/swift-cmark.git", | ||
"state": { | ||
"branch": "gfm", | ||
"revision": "eb9a6a357b6816c68f4b194eaa5b67f3cd1fa5c3", | ||
"version": null | ||
} | ||
}, | ||
{ | ||
"package": "swift-crypto", | ||
"repositoryURL": "https://github.com/apple/swift-crypto.git", | ||
"state": { | ||
"branch": null, | ||
"revision": "ddb07e896a2a8af79512543b1c7eb9797f8898a5", | ||
"version": "1.1.7" | ||
} | ||
}, | ||
{ | ||
"package": "SwiftDocCPlugin", | ||
"repositoryURL": "https://github.com/apple/swift-docc-plugin", | ||
"state": { | ||
"branch": null, | ||
"revision": "3303b164430d9a7055ba484c8ead67a52f7b74f6", | ||
"version": "1.0.0" | ||
} | ||
}, | ||
{ | ||
"package": "SymbolKit", | ||
"repositoryURL": "https://github.com/apple/swift-docc-symbolkit", | ||
"state": { | ||
"branch": "main", | ||
"revision": "53e5cb9b18222f66cb8d6fb684d7383e705e0936", | ||
"version": null | ||
} | ||
}, | ||
{ | ||
"package": "CLMDB", | ||
"repositoryURL": "https://github.com/apple/swift-lmdb.git", | ||
"state": { | ||
"branch": "main", | ||
"revision": "584941b1236b15bad74d8163785d389c028b1ad8", | ||
"version": null | ||
} | ||
}, | ||
{ | ||
"package": "swift-markdown", | ||
"repositoryURL": "https://github.com/apple/swift-markdown.git", | ||
"state": { | ||
"branch": "main", | ||
"revision": "36b71b380ca9cb7497fc24416f8b77721eaf7330", | ||
"version": null | ||
} | ||
}, | ||
{ | ||
"package": "swift-nio", | ||
"repositoryURL": "https://github.com/apple/swift-nio.git", | ||
"state": { | ||
"branch": null, | ||
"revision": "1d425b0851ffa2695d488cce1d68df2539f42500", | ||
"version": "2.31.2" | ||
} | ||
"pins" : [ | ||
{ | ||
"identity" : "swift-argument-parser", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/apple/swift-argument-parser", | ||
"state" : { | ||
"revision" : "fee6933f37fde9a5e12a1e4aeaa93fe60116ff2a", | ||
"version" : "1.2.2" | ||
} | ||
] | ||
}, | ||
"version": 1 | ||
}, | ||
{ | ||
"identity" : "swift-atomics", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/apple/swift-atomics.git", | ||
"state" : { | ||
"revision" : "6c89474e62719ddcc1e9614989fff2f68208fe10", | ||
"version" : "1.1.0" | ||
} | ||
}, | ||
{ | ||
"identity" : "swift-cmark", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/apple/swift-cmark.git", | ||
"state" : { | ||
"branch" : "gfm", | ||
"revision" : "eb9a6a357b6816c68f4b194eaa5b67f3cd1fa5c3" | ||
} | ||
}, | ||
{ | ||
"identity" : "swift-collections", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/apple/swift-collections.git", | ||
"state" : { | ||
"revision" : "937e904258d22af6e447a0b72c0bc67583ef64a2", | ||
"version" : "1.0.4" | ||
} | ||
}, | ||
{ | ||
"identity" : "swift-crypto", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/apple/swift-crypto.git", | ||
"state" : { | ||
"revision" : "33a20e650c33f6d72d822d558333f2085effa3dc", | ||
"version" : "2.5.0" | ||
} | ||
}, | ||
{ | ||
"identity" : "swift-docc-plugin", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/apple/swift-docc-plugin", | ||
"state" : { | ||
"revision" : "3303b164430d9a7055ba484c8ead67a52f7b74f6", | ||
"version" : "1.0.0" | ||
} | ||
}, | ||
{ | ||
"identity" : "swift-docc-symbolkit", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/apple/swift-docc-symbolkit", | ||
"state" : { | ||
"branch" : "main", | ||
"revision" : "53e5cb9b18222f66cb8d6fb684d7383e705e0936" | ||
} | ||
}, | ||
{ | ||
"identity" : "swift-lmdb", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/apple/swift-lmdb.git", | ||
"state" : { | ||
"branch" : "main", | ||
"revision" : "584941b1236b15bad74d8163785d389c028b1ad8" | ||
} | ||
}, | ||
{ | ||
"identity" : "swift-markdown", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/apple/swift-markdown.git", | ||
"state" : { | ||
"branch" : "main", | ||
"revision" : "36b71b380ca9cb7497fc24416f8b77721eaf7330" | ||
} | ||
}, | ||
{ | ||
"identity" : "swift-nio", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/apple/swift-nio.git", | ||
"state" : { | ||
"revision" : "2d8e6ca36fe3e8ed74b0883f593757a45463c34d", | ||
"version" : "2.53.0" | ||
} | ||
} | ||
], | ||
"version" : 2 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters