Skip to content

Commit

Permalink
build: pin serde and rmp-serde (#119)
Browse files Browse the repository at this point in the history
* build: pin serde and rmp-serde

* style: clippy fix

* loosen rmp-serde and serde versions

* fix: do the clippy again
  • Loading branch information
jost-s authored Dec 15, 2023
1 parent 9417f42 commit f1ec75d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 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 crates/hc_seed_bundle/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ edition = "2018"
[dependencies]
futures = "0.3.28"
one_err = "0.0.8"
rmp-serde = "1.1.1"
rmp-serde = "0.15"
rmpv = { version = "=1.0.0", features = [ "with-serde" ] } # Version 1.0.1 requires Rust 1.70.0
serde = { version = "1", features = [ "derive", "rc" ] }
serde_bytes = "0.11.9"
Expand Down
2 changes: 1 addition & 1 deletion crates/lair_keystore/src/store_sqlite.rs
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ impl SqlPool {
// only set WAL mode on the first write connection
// it's a slow operation, and not needed on subsequent connections.
write_con
.pragma_update(None, "journal_mode", &"WAL".to_string())
.pragma_update(None, "journal_mode", "WAL".to_string())
.map_err(one_err::OneErr::new)?;

// initialize tables if they don't already exist
Expand Down

0 comments on commit f1ec75d

Please sign in to comment.