Skip to content

Commit

Permalink
Merge pull request #10 from pm100/debugdb
Browse files Browse the repository at this point in the history
move major rework tpo main
  • Loading branch information
pm100 authored Jan 17, 2024
2 parents 5b8f5d2 + 6274661 commit fc4fef7
Show file tree
Hide file tree
Showing 16 changed files with 2,254 additions and 433 deletions.
28 changes: 16 additions & 12 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,27 @@
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'db65'",
"cargo": {
"args": [
"build",
"--bin=db65",
"--package=db65"
],
"filter": {
"name": "db65",
"kind": "bin"
}
"name": "Launch",
"program": "${workspaceRoot}/target/debug/db65.exe",
"args": [],
"cwd": "${workspaceFolder}",
"console": "externalTerminal",
"env": {
"RUST_BACKTRACE": "1"
},
// "stopOnEntry": true
},
{
"type": "cppvsdbg",
"request": "launch",
"name": "Debug executable 'db65'",
"program": "${workspaceRoot}/target/debug/db65.exe",
"args": [
// "-c",
// "commands.txt"
],
"cwd": "${workspaceFolder}"
"cwd": "${workspaceFolder}",
"console": "externalTerminal",
},
{
"type": "lldb",
Expand Down
6 changes: 6 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@ clap = {version="4.4.11", features=["derive"]}
evalexpr = "11.3.0"
#evalexpr = {path = "../forks/evalexpr"}
hex = "0.4.3"
log = "0.4.20"
once_cell = "1.19.0"
rustyline = {version="13.0.0", features=["with-file-history"]}
shlex = "1.2.0"
simplelog = "0.12.1"
thiserror = "1.0.51"

[build-dependencies]
Expand All @@ -24,3 +26,7 @@ cc = "1.0.83"
[profile.release]
strip = true
lto = true

[dependencies.rusqlite]
version = "0.30.0"
features = ["bundled"]
Loading

0 comments on commit fc4fef7

Please sign in to comment.