Skip to content

Commit 7468ee2

Browse files
committed
upgrade swift-json-schema
1 parent 64017dc commit 7468ee2

File tree

3 files changed

+14
-46
lines changed

3 files changed

+14
-46
lines changed

.vscode/launch.json

Lines changed: 12 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -6,35 +6,19 @@
66
"args": [],
77
"cwd": "${workspaceFolder:boka}/Boka",
88
"name": "Debug Boka (Boka)",
9-
"program": "${workspaceFolder:boka}/Boka/.build/debug/Boka",
10-
"preLaunchTask": "swift: Build Debug Boka (Boka)"
9+
"preLaunchTask": "swift: Build Debug Boka (Boka)",
10+
"target": "Boka",
11+
"configuration": "debug"
1112
},
1213
{
1314
"type": "swift",
1415
"request": "launch",
1516
"args": [],
1617
"cwd": "${workspaceFolder:boka}/Boka",
1718
"name": "Release Boka (Boka)",
18-
"program": "${workspaceFolder:boka}/Boka/.build/release/Boka",
19-
"preLaunchTask": "swift: Build Release Boka (Boka)"
20-
},
21-
{
22-
"type": "lldb",
23-
"request": "launch",
24-
"args": [],
25-
"cwd": "${workspaceFolder:boka}/Cli",
26-
"name": "Debug Cli (Cli)",
27-
"program": "${workspaceFolder:boka}/Cli/.build/debug/Cli",
28-
"preLaunchTask": "swift: Build Debug Cli (Cli)"
29-
},
30-
{
31-
"type": "lldb",
32-
"request": "launch",
33-
"args": [],
34-
"cwd": "${workspaceFolder:boka}/Cli",
35-
"name": "Release Cli (Cli)",
36-
"program": "${workspaceFolder:boka}/Cli/.build/release/Cli",
37-
"preLaunchTask": "swift: Build Release Cli (Cli)"
19+
"preLaunchTask": "swift: Build Release Boka (Boka)",
20+
"target": "Boka",
21+
"configuration": "release"
3822
},
3923
{
4024
"type": "swift",
@@ -56,41 +40,25 @@
5640
"target": "Tools",
5741
"configuration": "release"
5842
},
59-
{
60-
"type": "swift",
61-
"request": "launch",
62-
"args": [],
63-
"cwd": "${workspaceFolder:boka}/Fuzzing",
64-
"name": "Debug BokaFuzzer (Fuzzing)",
65-
"program": "${workspaceFolder:boka}/Fuzzing/.build/debug/BokaFuzzer",
66-
"preLaunchTask": "swift: Build Debug BokaFuzzer (Fuzzing)"
67-
},
68-
{
69-
"type": "swift",
70-
"request": "launch",
71-
"args": [],
72-
"cwd": "${workspaceFolder:boka}/Fuzzing",
73-
"name": "Release BokaFuzzer (Fuzzing)",
74-
"program": "${workspaceFolder:boka}/Fuzzing/.build/release/BokaFuzzer",
75-
"preLaunchTask": "swift: Build Release BokaFuzzer (Fuzzing)"
76-
},
7743
{
7844
"type": "swift",
7945
"request": "launch",
8046
"args": [],
8147
"cwd": "${workspaceFolder:boka}/JAMTests",
8248
"name": "Debug BenchmarkTestVectors (JAMTests)",
83-
"program": "${workspaceFolder:boka}/JAMTests/.build/debug/BenchmarkTestVectors",
84-
"preLaunchTask": "swift: Build Debug BenchmarkTestVectors (JAMTests)"
49+
"preLaunchTask": "swift: Build Debug BenchmarkTestVectors (JAMTests)",
50+
"target": "BenchmarkTestVectors",
51+
"configuration": "debug"
8552
},
8653
{
8754
"type": "swift",
8855
"request": "launch",
8956
"args": [],
9057
"cwd": "${workspaceFolder:boka}/JAMTests",
9158
"name": "Release BenchmarkTestVectors (JAMTests)",
92-
"program": "${workspaceFolder:boka}/JAMTests/.build/release/BenchmarkTestVectors",
93-
"preLaunchTask": "swift: Build Release BenchmarkTestVectors (JAMTests)"
59+
"preLaunchTask": "swift: Build Release BenchmarkTestVectors (JAMTests)",
60+
"target": "BenchmarkTestVectors",
61+
"configuration": "release"
9462
}
9563
]
9664
}

Tools/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ let package = Package(
1414
.package(path: "../TracingUtils"),
1515
.package(path: "../Utils"),
1616
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.5.0"),
17-
.package(url: "https://github.com/ajevans99/swift-json-schema.git", from: "0.3.2"),
17+
.package(url: "https://github.com/ajevans99/swift-json-schema.git", from: "0.10.0"),
1818
.package(url: "https://github.com/wickwirew/Runtime.git", from: "2.2.7"),
1919
],
2020
targets: [

Tools/Sources/Tools/OpenRPC.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import ArgumentParser
22
import Foundation
3-
@preconcurrency import JSONSchema
3+
import JSONSchema
44
@preconcurrency import JSONSchemaBuilder
55
import RPC
66
import Runtime

0 commit comments

Comments
 (0)