Skip to content

Commit 5fd1e5a

Browse files
committed
Swift build fixes
1 parent 8c1414c commit 5fd1e5a

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ let package = Package(
2525
.library(name: "Fuzzilli",targets: ["Fuzzilli"]),
2626
],
2727
dependencies: [
28-
.package(url: "https://github.com/apple/swift-protobuf.git", from: "1.31.0"),
28+
.package(url: "https://github.com/apple/swift-protobuf.git", from: "1.32.0"),
2929
.package(
3030
url: "https://github.com/apple/swift-collections.git",
3131
.upToNextMinor(from: "1.2.0")

Sources/FuzzilliCli/Profiles/V8DebugProfile.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ let v8DebugProfile = Profile(
3030

3131
maxExecsBeforeRespawn: 1000,
3232

33-
timeout: 250,
33+
timeout: Timeout.value(250),
3434

3535
codePrefix: """
3636
""",

Sources/FuzzilliCli/TerminalUI.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ class TerminalUI {
148148
}
149149

150150
print("""
151+
\(postgresStats)\
151152
-----------------
152153
Fuzzer state: \(state)
153154
Uptime: \(formatTimeInterval(fuzzer.uptime()))

0 commit comments

Comments
 (0)