Skip to content

Commit aa3d86a

Browse files
committed
Add support for using SQLite.
1 parent 68e214c commit aa3d86a

25 files changed

+2889
-1058
lines changed

Cargo.lock

Lines changed: 156 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ hyper = { version = "0.14.4", features = ["server", "stream"]}
2323
tokio = { version = "1.7.1", features = ["macros", "time", "rt"] }
2424
futures = { version = "0.3", default-features = false, features = ["std"] }
2525
async-trait = "0.1.31"
26-
uuid = { version = "0.8", features = ["v4", "serde"] }
26+
uuid = { version = "1.3", features = ["v4", "serde"] }
2727
tracing = "0.1"
2828
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
2929
url = "2.1.0"
@@ -42,9 +42,10 @@ tower = { version = "0.4.13", features = ["util", "limit", "buffer", "load-shed"
4242
github-graphql = { path = "github-graphql" }
4343
rand = "0.8.5"
4444
ignore = "0.4.18"
45-
postgres-types = { version = "0.2.4", features = ["derive"] }
45+
postgres-types = { version = "0.2.4", features = ["derive", "with-uuid-1"] }
4646
cron = { version = "0.12.0" }
4747
bytes = "1.1.0"
48+
rusqlite = { version = "0.28.0", features = ["bundled", "chrono", "serde_json", "uuid"] }
4849

4950
[dependencies.serde]
5051
version = "1"

0 commit comments

Comments
 (0)