Skip to content

Commit

Permalink
qe: remove im dependency (#3477)
Browse files Browse the repository at this point in the history
- It is not maintained
- It is not needed
  • Loading branch information
tomhoule committed Dec 8, 2022
1 parent a04266d commit ca779ac
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 47 deletions.
43 changes: 0 additions & 43 deletions Cargo.lock

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

1 change: 0 additions & 1 deletion query-engine/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ crossbeam-queue = "0.3.5"
mongodb-client = { path = "../../libs/mongodb-client/" }
psl.workspace = true
futures = "0.3"
im = "15.1.0"
indexmap = { version = "1.7", features = ["serde-1"] }
itertools = "0.10"
mongodb-connector = { path = "../connectors/mongodb-query-connector", package = "mongodb-query-connector", optional = true }
Expand Down
4 changes: 1 addition & 3 deletions query-engine/core/src/interpreter/interpreter.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
use std::fmt;

use super::{
expression::*,
query_interpreters::{read, write},
Expand All @@ -9,8 +7,8 @@ use crate::{Query, QueryResult};
use connector::ConnectionLike;
use crossbeam_queue::SegQueue;
use futures::future::BoxFuture;
use im::HashMap;
use prisma_models::prelude::*;
use std::{collections::HashMap, fmt};
use tracing::Instrument;

#[derive(Debug, Clone)]
Expand Down

0 comments on commit ca779ac

Please sign in to comment.