-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update CI * Add .codecov file
- Loading branch information
Showing
32 changed files
with
176 additions
and
11 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ignore: | ||
- Tests |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
66 changes: 66 additions & 0 deletions
66
...ributeGraph.framework/Modules/AttributeGraph.swiftmodule/arm64-apple-macos.swiftinterface
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,66 @@ | ||
// swift-interface-format-version: 1.0 | ||
// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) | ||
// swift-module-flags: -target arm64-apple-macos12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AttributeGraph | ||
// swift-module-flags-ignorable: -enable-bare-slash-regex | ||
@_exported import AttributeGraph | ||
import Foundation | ||
import Swift | ||
import _Concurrency | ||
import _StringProcessing | ||
@frozen @propertyWrapper @dynamicMemberLookup public struct Attribute<Value> : Swift.Hashable, Swift.Equatable, Swift.CustomStringConvertible { | ||
public var identifier: AttributeGraph.AGAttribute | ||
public var wrappedValue: Value { | ||
get | ||
set | ||
} | ||
|
||
@inlinable public init(identifier: AttributeGraph.AGAttribute) { | ||
self.identifier = identifier | ||
} | ||
|
||
@inlinable public init(_ attribute: AttributeGraph.Attribute<Value>) { | ||
self = attribute | ||
} | ||
|
||
public subscript<Member>(dynamicMember keyPath: Swift.KeyPath<Value, Member>) -> AttributeGraph.Attribute<Member> { | ||
get | ||
} | ||
|
||
public subscript<Member>(keyPath: Swift.KeyPath<Value, Member>) -> AttributeGraph.Attribute<Member> { | ||
get | ||
} | ||
|
||
public var description: Swift.String { | ||
get | ||
} | ||
public static func == (lhs: AttributeGraph.Attribute<Value>, rhs: AttributeGraph.Attribute<Value>) -> Swift.Bool | ||
public func hash(into hasher: inout Swift.Hasher) | ||
public var hashValue: Swift.Int { | ||
get | ||
} | ||
} | ||
public protocol _AttributeBody { | ||
static func _destroySelf(_ value: Swift.UnsafeMutableRawPointer) | ||
static var _hasDestroySelf: Swift.Bool { get } | ||
static func _updateDefault(_ value: Swift.UnsafeMutableRawPointer) | ||
static var comparisonMode: AGComparisonMode { get } | ||
} | ||
extension AttributeGraph._AttributeBody { | ||
public static func _destroySelf(_ value: Swift.UnsafeMutableRawPointer) | ||
public static var _hasDestroySelf: Swift.Bool { | ||
get | ||
} | ||
public static func _updateDefault(_ value: Swift.UnsafeMutableRawPointer) | ||
public static var comparisonMode: AGComparisonMode { get } | ||
} | ||
public protocol Rule : AttributeGraph._AttributeBody { | ||
associatedtype Value | ||
static var initialValue: Self.Value? { get } | ||
var value: Self.Value { get } | ||
} | ||
extension AttributeGraph.Rule { | ||
public static var initialValue: Self.Value? { | ||
get | ||
} | ||
} | ||
public func compareValues<A>(_ lhs: A, _ rhs: A, mode: AGComparisonMode = ._3) -> Swift.Bool |
File renamed without changes.
66 changes: 66 additions & 0 deletions
66
...ibuteGraph.framework/Modules/AttributeGraph.swiftmodule/x86_64-apple-macos.swiftinterface
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,66 @@ | ||
// swift-interface-format-version: 1.0 | ||
// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) | ||
// swift-module-flags: -target x86_64-apple-macos12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name AttributeGraph | ||
// swift-module-flags-ignorable: -enable-bare-slash-regex | ||
@_exported import AttributeGraph | ||
import Foundation | ||
import Swift | ||
import _Concurrency | ||
import _StringProcessing | ||
@frozen @propertyWrapper @dynamicMemberLookup public struct Attribute<Value> : Swift.Hashable, Swift.Equatable, Swift.CustomStringConvertible { | ||
public var identifier: AttributeGraph.AGAttribute | ||
public var wrappedValue: Value { | ||
get | ||
set | ||
} | ||
|
||
@inlinable public init(identifier: AttributeGraph.AGAttribute) { | ||
self.identifier = identifier | ||
} | ||
|
||
@inlinable public init(_ attribute: AttributeGraph.Attribute<Value>) { | ||
self = attribute | ||
} | ||
|
||
public subscript<Member>(dynamicMember keyPath: Swift.KeyPath<Value, Member>) -> AttributeGraph.Attribute<Member> { | ||
get | ||
} | ||
|
||
public subscript<Member>(keyPath: Swift.KeyPath<Value, Member>) -> AttributeGraph.Attribute<Member> { | ||
get | ||
} | ||
|
||
public var description: Swift.String { | ||
get | ||
} | ||
public static func == (lhs: AttributeGraph.Attribute<Value>, rhs: AttributeGraph.Attribute<Value>) -> Swift.Bool | ||
public func hash(into hasher: inout Swift.Hasher) | ||
public var hashValue: Swift.Int { | ||
get | ||
} | ||
} | ||
public protocol _AttributeBody { | ||
static func _destroySelf(_ value: Swift.UnsafeMutableRawPointer) | ||
static var _hasDestroySelf: Swift.Bool { get } | ||
static func _updateDefault(_ value: Swift.UnsafeMutableRawPointer) | ||
static var comparisonMode: AGComparisonMode { get } | ||
} | ||
extension AttributeGraph._AttributeBody { | ||
public static func _destroySelf(_ value: Swift.UnsafeMutableRawPointer) | ||
public static var _hasDestroySelf: Swift.Bool { | ||
get | ||
} | ||
public static func _updateDefault(_ value: Swift.UnsafeMutableRawPointer) | ||
public static var comparisonMode: AGComparisonMode { get } | ||
} | ||
public protocol Rule : AttributeGraph._AttributeBody { | ||
associatedtype Value | ||
static var initialValue: Self.Value? { get } | ||
var value: Self.Value { get } | ||
} | ||
extension AttributeGraph.Rule { | ||
public static var initialValue: Self.Value? { | ||
get | ||
} | ||
} | ||
public func compareValues<A>(_ lhs: A, _ rhs: A, mode: AGComparisonMode = ._3) -> Swift.Bool |
File renamed without changes.
1 change: 0 additions & 1 deletion
1
Sources/AttributeGraph.xcframework/macos-arm64e/AttributeGraph.framework/AttributeGraph
This file was deleted.
Oops, something went wrong.
Binary file removed
BIN
-408 KB
Sources/AttributeGraph.xcframework/macos-arm64e/AttributeGraph.framework/AttributeGraph-14_0
Binary file not shown.
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,12 @@ | ||
// | ||
// GraphShims.swift | ||
// | ||
// | ||
// Created by Kyle on 2023/12/21. | ||
// | ||
|
||
#if OPENGRAPH_COMPATIBILITY_TEST | ||
@_exported import AttributeGraph | ||
#else | ||
@_exported import OpenGraph | ||
#endif |
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