-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from brightdigit/v1.0.0-beta.3
1.0.0 beta.3
- Loading branch information
Showing
18 changed files
with
356 additions
and
226 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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
// swift-tools-version: 6.0 | ||
// swiftlint:disable explicit_acl explicit_top_level_acl | ||
|
||
import PackageDescription | ||
|
||
let swiftSettings: [SwiftSetting] = [ | ||
SwiftSetting.enableExperimentalFeature("AccessLevelOnImport"), | ||
SwiftSetting.enableExperimentalFeature("BitwiseCopyable"), | ||
SwiftSetting.enableExperimentalFeature("GlobalActorIsolatedTypesUsability"), | ||
SwiftSetting.enableExperimentalFeature("IsolatedAny"), | ||
SwiftSetting.enableExperimentalFeature("MoveOnlyPartialConsumption"), | ||
SwiftSetting.enableExperimentalFeature("NestedProtocols"), | ||
SwiftSetting.enableExperimentalFeature("NoncopyableGenerics"), | ||
SwiftSetting.enableExperimentalFeature("RegionBasedIsolation"), | ||
SwiftSetting.enableExperimentalFeature("TransferringArgsAndResults"), | ||
SwiftSetting.enableExperimentalFeature("VariadicGenerics"), | ||
|
||
SwiftSetting.enableUpcomingFeature("FullTypedThrows"), | ||
SwiftSetting.enableUpcomingFeature("InternalImportsByDefault") | ||
|
||
// SwiftSetting.unsafeFlags([ | ||
// "-Xfrontend", | ||
// "-warn-long-function-bodies=100" | ||
// ]), | ||
// SwiftSetting.unsafeFlags([ | ||
// "-Xfrontend", | ||
// "-warn-long-expression-type-checking=100" | ||
// ]) | ||
] | ||
|
||
let package = Package( | ||
name: "FelinePine", | ||
platforms: [.iOS(.v14), .watchOS(.v7), .macOS(.v11)], | ||
products: [ | ||
.library( | ||
name: "FelinePine", | ||
targets: ["FelinePine"] | ||
) | ||
], | ||
targets: [ | ||
.target( | ||
name: "FelinePine", | ||
swiftSettings: swiftSettings | ||
), | ||
.testTarget( | ||
name: "FelinePineTests", | ||
dependencies: ["FelinePine"] | ||
) | ||
] | ||
) | ||
// swiftlint:enable explicit_acl explicit_top_level_acl |
Binary file modified
BIN
-8.59 KB
(1.4%)
Sources/FelinePine/Documentation.docc/Resources/FelinePine.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-19.2 KB
(0.66%)
Sources/FelinePine/Documentation.docc/Resources/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-29.8 KB
(0.42%)
Sources/FelinePine/Documentation.docc/Resources/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
Oops, something went wrong.