Connect and retrieve initial bucket index

This commit is contained in:
Matteo Settenvini 2023-07-01 13:03:41 +02:00
commit eccd4ef797
12 changed files with 3531 additions and 0 deletions

47
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,47 @@
// SPDX-FileCopyrightText: Public domain.
// SPDX-License-Identifier: CC0-1.0
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'serves3'",
"cargo": {
"args": [
"build",
"--bin=serves3",
"--package=serves3"
],
"filter": {
"name": "serves3",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'serves3'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=serves3",
"--package=serves3"
],
"filter": {
"name": "serves3",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}