Skip to content

Commit

Permalink
store: Remove dead dep (graphprotocol#3406)
Browse files Browse the repository at this point in the history
  • Loading branch information
leoyvens authored Apr 1, 2022
1 parent 277e2fd commit 4a0d13e
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 17 deletions.
21 changes: 18 additions & 3 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 server/index-node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.25.2"
edition = "2021"

[dependencies]
blake3 = "0.3.8"
blake3 = "1.0"
either = "1.6.1"
futures = "0.3.4"
graph = { path = "../../graph" }
Expand Down
3 changes: 1 addition & 2 deletions store/postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"

[dependencies]
async-trait = "0.1.50"
blake3 = "0.3.8"
blake3 = "1.0"
derive_more = { version = "0.99.17" }
diesel = { version = "1.4.8", features = ["postgres", "serde_json", "numeric", "r2d2"] }
# We use diesel-dynamic-schema straight from git as the project has not
Expand All @@ -16,7 +16,6 @@ diesel_migrations = "1.3.0"
fallible-iterator = "0.2.0"
graph = { path = "../../graph" }
graph-graphql = { path = "../../graphql" }
graphql-parser = "0.4.0"
Inflector = "0.11.3"
lazy_static = "1.1"
lru_time_cache = "0.11"
Expand Down
11 changes: 0 additions & 11 deletions store/postgres/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,10 @@
extern crate derive_more;
#[macro_use]
extern crate diesel;
extern crate diesel_dynamic_schema;
#[macro_use]
extern crate diesel_migrations;
#[macro_use]
extern crate diesel_derive_enum;
extern crate fallible_iterator;
extern crate graph;
extern crate graph_graphql;
extern crate graphql_parser;
extern crate inflector;
extern crate lazy_static;
extern crate lru_time_cache;
extern crate postgres;
extern crate serde;
extern crate uuid;

mod advisory_lock;
mod block_range;
Expand Down

0 comments on commit 4a0d13e

Please sign in to comment.