Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
130 changes: 65 additions & 65 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -28,71 +28,71 @@ let package = Package(
url: "https://github.com/netreconlab/Parse-Swift.git",
.upToNextMajor(from: "5.12.3")
),
.package(
url: "https://github.com/apple/swift-collections.git",
exact: Version(1, 1, 6)

),
.package(
url: "https://github.com/apple/swift-nio.git",
exact: Version(2, 86, 2)

),
.package(
url: "https://github.com/apple/swift-nio-http2.git",
exact: Version(1, 38, 0)

),
.package(
url: "https://github.com/apple/swift-log.git",
exact: Version(1, 6, 4)

),
.package(
url: "https://github.com/apple/swift-nio-ssl.git",
exact: Version(2, 34, 1)

),
.package(
url: "https://github.com/apple/swift-crypto.git",
exact: Version(3, 15, 1)

),
.package(
url: "https://github.com/swift-server/async-http-client.git",
exact: Version(1, 29, 1)

),
.package(
url: "https://github.com/apple/swift-nio-extras.git",
exact: Version(1, 29, 0)

),
.package(
url: "https://github.com/apple/swift-asn1.git",
exact: Version(1, 4, 0)

),
.package(
url: "https://github.com/apple/swift-async-algorithms.git",
exact: Version(1, 0, 4)

),
.package(
url: "https://github.com/apple/swift-certificates.git",
exact: Version(1, 15, 1)

),
.package(
url: "https://github.com/apple/swift-http-structured-headers.git",
exact: Version(1, 4, 0)

),
.package(
url: "https://github.com/apple/swift-nio-transport-services.git",
exact: Version(1, 25, 2)

)
.package(
url: "https://github.com/apple/swift-collections.git",
exact: Version(1, 1, 6)

),
.package(
url: "https://github.com/apple/swift-nio.git",
exact: Version(2, 86, 2)

),
.package(
url: "https://github.com/apple/swift-nio-http2.git",
exact: Version(1, 38, 0)

),
.package(
url: "https://github.com/apple/swift-log.git",
exact: Version(1, 6, 4)

),
.package(
url: "https://github.com/apple/swift-nio-ssl.git",
exact: Version(2, 34, 1)

),
.package(
url: "https://github.com/apple/swift-crypto.git",
exact: Version(3, 15, 1)

),
.package(
url: "https://github.com/swift-server/async-http-client.git",
exact: Version(1, 29, 1)

),
.package(
url: "https://github.com/apple/swift-nio-extras.git",
exact: Version(1, 29, 0)

),
.package(
url: "https://github.com/apple/swift-asn1.git",
exact: Version(1, 4, 0)

),
.package(
url: "https://github.com/apple/swift-async-algorithms.git",
exact: Version(1, 0, 4)

),
.package(
url: "https://github.com/apple/swift-certificates.git",
exact: Version(1, 15, 1)

),
.package(
url: "https://github.com/apple/swift-http-structured-headers.git",
exact: Version(1, 4, 0)

),
.package(
url: "https://github.com/apple/swift-nio-transport-services.git",
exact: Version(1, 25, 2)

)
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion Sources/ParseServerSwift/Parse.swift
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func initializeServer(
) async throws {

// Parse uses tailored encoders/decoders. These can be retrieved from any ParseObject
ContentConfiguration.global.use(encoder: User.getEncoder(), for: .json)
ContentConfiguration.global.use(encoder: User.getJSONEncoder(), for: .json)
ContentConfiguration.global.use(decoder: User.getDecoder(), for: .json)

guard let parseServerURL = URL(string: configuration.primaryParseServerURLString) else {
Expand Down
Loading