Skip to content

Commit

Permalink
Add support for using SQLite.
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuss committed Feb 21, 2023
1 parent 68e214c commit aa3d86a
Show file tree
Hide file tree
Showing 25 changed files with 2,889 additions and 1,058 deletions.
190 changes: 156 additions & 34 deletions 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ hyper = { version = "0.14.4", features = ["server", "stream"]}
tokio = { version = "1.7.1", features = ["macros", "time", "rt"] }
futures = { version = "0.3", default-features = false, features = ["std"] }
async-trait = "0.1.31"
uuid = { version = "0.8", features = ["v4", "serde"] }
uuid = { version = "1.3", features = ["v4", "serde"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
url = "2.1.0"
Expand All @@ -42,9 +42,10 @@ tower = { version = "0.4.13", features = ["util", "limit", "buffer", "load-shed"
github-graphql = { path = "github-graphql" }
rand = "0.8.5"
ignore = "0.4.18"
postgres-types = { version = "0.2.4", features = ["derive"] }
postgres-types = { version = "0.2.4", features = ["derive", "with-uuid-1"] }
cron = { version = "0.12.0" }
bytes = "1.1.0"
rusqlite = { version = "0.28.0", features = ["bundled", "chrono", "serde_json", "uuid"] }

[dependencies.serde]
version = "1"
Expand Down
Loading

0 comments on commit aa3d86a

Please sign in to comment.