Skip to content
This repository was archived by the owner on Oct 9, 2023. It is now read-only.

Commit 0e90db4

Browse files
committed
Delete unused crate dependencies
1 parent 39d050f commit 0e90db4

File tree

3 files changed

+0
-8
lines changed

3 files changed

+0
-8
lines changed

BUILD

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,16 @@ rust_library(
2828
name = "typedb_client",
2929
srcs = glob(["src/**/*.rs"], exclude = glob(["src/typedb_protocol_backup/**/*.rs"])),
3030
deps = [
31-
# "//typedb_protocol_backup",
3231
"@vaticle_typedb_protocol//grpc/rust:typedb-protocol",
3332

34-
"@vaticle_dependencies//library/crates:bytes",
3533
"@vaticle_dependencies//library/crates:crossbeam",
3634
"@vaticle_dependencies//library/crates:futures",
3735
"@vaticle_dependencies//library/crates:log",
3836
"@vaticle_dependencies//library/crates:prost",
3937
"@vaticle_dependencies//library/crates:tokio",
40-
"@vaticle_dependencies//library/crates:tokio_stream",
4138
"@vaticle_dependencies//library/crates:tonic",
4239
"@vaticle_dependencies//library/crates:uuid",
4340
],
44-
proc_macro_deps = [
45-
"@vaticle_dependencies//library/crates:derivative",
46-
],
4741
tags = [
4842
"crate-name=typedb-client",
4943
],

src/rpc/client.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ use std::future::Future;
2424
use std::sync::Arc;
2525
use futures::channel::mpsc;
2626
use futures::{SinkExt, Stream};
27-
use tokio_stream::wrappers::ReceiverStream;
2827
use tonic::{Response, Status, Streaming};
2928
use tonic::transport::Channel;
3029
use typedb_protocol::{core_database, core_database_manager, session, transaction};

src/rpc/transaction.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
* under the License.
2020
*/
2121

22-
use derivative::Derivative;
2322
use std::collections::HashMap;
2423
use std::mem;
2524
use std::pin::Pin;

0 commit comments

Comments
 (0)