Skip to content

Commit 5aa0901

Browse files
committed
fix version
1 parent b4d8887 commit 5aa0901

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed

Cargo.lock

Lines changed: 18 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

store/postgres/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition.workspace = true
77
async-trait = "0.1.50"
88
blake3 = "1.6"
99
chrono = { workspace = true }
10-
derive_more = { version = "2.0.1" }
10+
derive_more = { version = "2.0.1", features = ["full"] }
1111
diesel = { workspace = true }
1212
diesel-dynamic-schema = { workspace = true }
1313
diesel-derive-enum = { workspace = true }

store/postgres/src/block_range.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
use derive_more::Constructor;
12
use diesel::pg::Pg;
23
use diesel::query_builder::{AstPass, QueryFragment};
34
use diesel::result::QueryResult;

store/postgres/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
//! [Store] for the details of how the store is organized across
33
//! different databases/shards.
44
5-
#[macro_use]
6-
extern crate derive_more;
75
#[macro_use]
86
extern crate diesel;
97
#[macro_use]

0 commit comments

Comments
 (0)