Skip to content

Commit 867c9be

Browse files
committed
added association log and signature
1 parent 96fcc6f commit 867c9be

File tree

6 files changed

+923
-7
lines changed

6 files changed

+923
-7
lines changed

.vscode/launch.json

+252
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,252 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "lldb",
9+
"request": "launch",
10+
"name": "Debug executable 'xmtp_cli'",
11+
"cargo": {
12+
"args": [
13+
"build",
14+
"--bin=xmtp_cli",
15+
"--package=xmtp_cli"
16+
],
17+
"filter": {
18+
"name": "xmtp_cli",
19+
"kind": "bin"
20+
}
21+
},
22+
"args": [],
23+
"cwd": "${workspaceFolder}"
24+
},
25+
{
26+
"type": "lldb",
27+
"request": "launch",
28+
"name": "Debug unit tests in executable 'xmtp_cli'",
29+
"cargo": {
30+
"args": [
31+
"test",
32+
"--no-run",
33+
"--bin=xmtp_cli",
34+
"--package=xmtp_cli"
35+
],
36+
"filter": {
37+
"name": "xmtp_cli",
38+
"kind": "bin"
39+
}
40+
},
41+
"args": [],
42+
"cwd": "${workspaceFolder}"
43+
},
44+
{
45+
"type": "lldb",
46+
"request": "launch",
47+
"name": "Debug unit tests in library 'xmtp_api_grpc'",
48+
"cargo": {
49+
"args": [
50+
"test",
51+
"--no-run",
52+
"--lib",
53+
"--package=xmtp_api_grpc"
54+
],
55+
"filter": {
56+
"name": "xmtp_api_grpc",
57+
"kind": "lib"
58+
}
59+
},
60+
"args": [],
61+
"cwd": "${workspaceFolder}"
62+
},
63+
{
64+
"type": "lldb",
65+
"request": "launch",
66+
"name": "Debug unit tests in library 'xmtp_proto'",
67+
"cargo": {
68+
"args": [
69+
"test",
70+
"--no-run",
71+
"--lib",
72+
"--package=xmtp_proto"
73+
],
74+
"filter": {
75+
"name": "xmtp_proto",
76+
"kind": "lib"
77+
}
78+
},
79+
"args": [],
80+
"cwd": "${workspaceFolder}"
81+
},
82+
{
83+
"type": "lldb",
84+
"request": "launch",
85+
"name": "Debug unit tests in library 'xmtp_v2'",
86+
"cargo": {
87+
"args": [
88+
"test",
89+
"--no-run",
90+
"--lib",
91+
"--package=xmtp_v2"
92+
],
93+
"filter": {
94+
"name": "xmtp_v2",
95+
"kind": "lib"
96+
}
97+
},
98+
"args": [],
99+
"cwd": "${workspaceFolder}"
100+
},
101+
{
102+
"type": "lldb",
103+
"request": "launch",
104+
"name": "Debug unit tests in library 'xmtp_cryptography'",
105+
"cargo": {
106+
"args": [
107+
"test",
108+
"--no-run",
109+
"--lib",
110+
"--package=xmtp_cryptography"
111+
],
112+
"filter": {
113+
"name": "xmtp_cryptography",
114+
"kind": "lib"
115+
}
116+
},
117+
"args": [],
118+
"cwd": "${workspaceFolder}"
119+
},
120+
{
121+
"type": "lldb",
122+
"request": "launch",
123+
"name": "Debug unit tests in library 'xmtp_mls'",
124+
"cargo": {
125+
"args": [
126+
"test",
127+
"--no-run",
128+
"--lib",
129+
"--package=xmtp_mls"
130+
],
131+
"filter": {
132+
"name": "xmtp_mls",
133+
"kind": "lib"
134+
}
135+
},
136+
"args": [],
137+
"cwd": "${workspaceFolder}"
138+
},
139+
{
140+
"type": "lldb",
141+
"request": "launch",
142+
"name": "Debug executable 'update-schema'",
143+
"cargo": {
144+
"args": [
145+
"build",
146+
"--bin=update-schema",
147+
"--package=xmtp_mls"
148+
],
149+
"filter": {
150+
"name": "update-schema",
151+
"kind": "bin"
152+
}
153+
},
154+
"args": [],
155+
"cwd": "${workspaceFolder}"
156+
},
157+
{
158+
"type": "lldb",
159+
"request": "launch",
160+
"name": "Debug unit tests in executable 'update-schema'",
161+
"cargo": {
162+
"args": [
163+
"test",
164+
"--no-run",
165+
"--bin=update-schema",
166+
"--package=xmtp_mls"
167+
],
168+
"filter": {
169+
"name": "update-schema",
170+
"kind": "bin"
171+
}
172+
},
173+
"args": [],
174+
"cwd": "${workspaceFolder}"
175+
},
176+
{
177+
"type": "lldb",
178+
"request": "launch",
179+
"name": "Debug executable 'mls-validation-service'",
180+
"cargo": {
181+
"args": [
182+
"build",
183+
"--bin=mls-validation-service",
184+
"--package=mls_validation_service"
185+
],
186+
"filter": {
187+
"name": "mls-validation-service",
188+
"kind": "bin"
189+
}
190+
},
191+
"args": [],
192+
"cwd": "${workspaceFolder}"
193+
},
194+
{
195+
"type": "lldb",
196+
"request": "launch",
197+
"name": "Debug unit tests in executable 'mls-validation-service'",
198+
"cargo": {
199+
"args": [
200+
"test",
201+
"--no-run",
202+
"--bin=mls-validation-service",
203+
"--package=mls_validation_service"
204+
],
205+
"filter": {
206+
"name": "mls-validation-service",
207+
"kind": "bin"
208+
}
209+
},
210+
"args": [],
211+
"cwd": "${workspaceFolder}"
212+
},
213+
{
214+
"type": "lldb",
215+
"request": "launch",
216+
"name": "Debug unit tests in library 'xmtp_user_preferences'",
217+
"cargo": {
218+
"args": [
219+
"test",
220+
"--no-run",
221+
"--lib",
222+
"--package=xmtp_user_preferences"
223+
],
224+
"filter": {
225+
"name": "xmtp_user_preferences",
226+
"kind": "lib"
227+
}
228+
},
229+
"args": [],
230+
"cwd": "${workspaceFolder}"
231+
},
232+
{
233+
"type": "lldb",
234+
"request": "launch",
235+
"name": "Debug unit tests in library 'xmtp_id'",
236+
"cargo": {
237+
"args": [
238+
"test",
239+
"--no-run",
240+
"--lib",
241+
"--package=xmtp_id"
242+
],
243+
"filter": {
244+
"name": "xmtp_id",
245+
"kind": "lib"
246+
}
247+
},
248+
"args": [],
249+
"cwd": "${workspaceFolder}"
250+
}
251+
]
252+
}

0 commit comments

Comments
 (0)