Skip to content

Commit

Permalink
feat!: configuration file system (#17)
Browse files Browse the repository at this point in the history
- initial file format is TOML
- lots of refactoring, most notably the CLI argument structures
- added CLI options `--show-config` and `--config-files`
- renamed CLI options --ipv4, --ipv6 to --address-family 4|6  (short
  args `-4` and `-6` unchanged)
  • Loading branch information
crazyscot committed Dec 26, 2024
1 parent 4e8dbf6 commit 0baf2ba
Show file tree
Hide file tree
Showing 30 changed files with 2,357 additions and 609 deletions.
16 changes: 8 additions & 8 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'qcpt'",
"name": "Debug executable 'qcp'",
"cargo": {
"args": [
"build",
"--bin=qcpt",
"--package=qcpt"
"--bin=qcp",
"--package=qcp"
],
"filter": {
"name": "qcpt",
"name": "qcp",
"kind": "bin"
}
},
Expand All @@ -25,16 +25,16 @@
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'qcpt'",
"name": "Debug unit tests in executable 'qcp'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=qcpt",
"--package=qcpt"
"--bin=qcp",
"--package=qcp"
],
"filter": {
"name": "qcpt",
"name": "qcp",
"kind": "bin"
}
},
Expand Down
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{
"type": "cargo",
"command": "doc",
"args": ["--no-deps"],
"args": ["--no-deps", "--locked"],
"problemMatcher": [
"$rustc"
],
Expand Down
Loading

0 comments on commit 0baf2ba

Please sign in to comment.