Skip to content

Commit

Permalink
refactor sql tools into a db module
Browse files Browse the repository at this point in the history
  • Loading branch information
daveajones committed Nov 22, 2022
1 parent 69b5169 commit d50b46b
Show file tree
Hide file tree
Showing 6 changed files with 432 additions and 390 deletions.
35 changes: 18 additions & 17 deletions podping/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions podping/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ route-recognizer = "0.2"
bytes = "0.5"
async-trait = "0.1"
url = "2.2.1"
rusqlite = "0.25.1"
rusqlite = "0.28"
zmq = "0.10"
drop-root = "0.1.1"
percent-encoding = "2.1.0"
capnp = "0.14"
handlebars = "4.3.5"
handlebars = "4.3.5"
dbif = { path = 'dbif'}
9 changes: 9 additions & 0 deletions podping/dbif/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[package]
name = "dbif"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rusqlite = "0.28.0"
Loading

0 comments on commit d50b46b

Please sign in to comment.