Skip to content

Commit

Permalink
fix: Use newer rusqlite with bundled sqlite library (#385)
Browse files Browse the repository at this point in the history
To make it easier to build on windows, etc, use bundled sqlite with rusqlite.
Apparently may slow things down by not using the system sqlite, but nothing
that octobot does should be too affected by that.

Co-authored-by: Cameron Will <[email protected]>
  • Loading branch information
cwill747 and Cameron Will authored Jul 22, 2024
1 parent 2bb85fd commit f113bed
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 17 deletions.
24 changes: 9 additions & 15 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ conventional = "0.5.0"
log = "0.4.19"
regex = "1.9.3"
ring = "0.16.20"
rusqlite = "0.29.0"
rusqlite = { version = "0.31.0", features = ["bundled"] }
serde = "1.0.183"
serde_derive = "1.0.183"
serde_json = "1.0.104"
Expand Down
2 changes: 1 addition & 1 deletion ops/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ unidiff = "0.3.3"
reqwest = { version = "0.11.18", features = ["json"] }
async-trait = "0.1.72"
serde_json = "1.0.104"
rusqlite = "0.29.0"
rusqlite = { version = "0.31.0", features = ["bundled"] }
anyhow = { version = "1.0.72", features = ["backtrace"] }

[dev-dependencies]
Expand Down

0 comments on commit f113bed

Please sign in to comment.