Skip to content

Commit b10e586

Browse files
authored
Update library (#37)
1 parent 94ca1c1 commit b10e586

File tree

5 files changed

+69
-60
lines changed

5 files changed

+69
-60
lines changed

Example/AppAttest-Client-App/AppAttestExample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/AppAttest-Client-App/AppAttestExample/ContentView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ struct ContentView: View {
1717
let payloadData = try JSONEncoder().encode(payload)
1818
let (data, response) = try await Client.createUser(body: payloadData)
1919
if response.status == .ok {
20-
print("Suceeded to send data!")
20+
print("Succeeded to send data!")
2121
self.response = String(decoding: data, as: UTF8.self)
2222
} else {
2323
print(response.status)

Example/AppAttest-Server/Package.resolved

Lines changed: 57 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.resolved

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ let package = Package(
1616
)
1717
],
1818
dependencies: [
19-
.package(url: "https://github.com/outfoxx/PotentCodables", from: "3.5.0"),
19+
.package(url: "https://github.com/outfoxx/PotentCodables", from: "3.5.1"),
2020
.package(url: "https://github.com/apple/swift-certificates", from: "1.5.0"),
2121
],
2222
targets: [

0 commit comments

Comments
 (0)