Skip to content

Commit 3b17127

Browse files
authored
Update zlib dependency (#761)
## Usage and product changes Support build on Apple Clang 17+ by updating dependencies (details: typedb/typedb-dependencies#577). ## Implementation
1 parent 3468564 commit 3b17127

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

Cargo.lock

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

dependencies/typedb/repositories.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ def typedb_dependencies():
2121
git_repository(
2222
name = "typedb_dependencies",
2323
remote = "https://github.com/typedb/typedb-dependencies",
24-
commit = "4ffeaabde31c41cee271cbb563f17168f4229a93", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_dependencies
24+
commit = "fac1121c903b0c9e5924d391a883e4a0749a82a2", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_dependencies
2525
)
2626

2727
def typedb_protocol():
2828
git_repository(
2929
name = "typedb_protocol",
3030
remote = "https://github.com/typedb/typedb-protocol",
31-
tag = "3.4.0-rc0", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_protocol
31+
commit = "38f66a1cc4db3b7a301676f50800e9530ac5c8a3", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_protocol
3232
)
3333

3434
def typedb_behaviour():

rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@
6060

6161
[dependencies.typedb-protocol]
6262
features = []
63+
rev = "38f66a1cc4db3b7a301676f50800e9530ac5c8a3"
6364
git = "https://github.com/typedb/typedb-protocol"
64-
tag = "3.4.0-rc0"
6565
default-features = false
6666

6767
[dependencies.log]

rust/src/connection/network/transmitter/rpc.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,20 @@ use tokio::{
2525
oneshot::channel as oneshot_async,
2626
},
2727
};
28-
use tonic::Status;
29-
use typedb_protocol::{database, database_manager, migration, transaction, transaction::server::Server};
28+
use typedb_protocol::{transaction, transaction::server::Server};
3029

3130
use super::{oneshot_blocking, response_sink::ResponseSink};
3231
use crate::{
3332
common::{address::Address, error::ConnectionError, RequestID, Result},
3433
connection::{
35-
message::{DatabaseExportResponse, Request, Response, TransactionResponse},
34+
message::{Request, Response, TransactionResponse},
3635
network::{
3736
channel::{open_callcred_channel, GRPCChannel},
3837
proto::{FromProto, IntoProto, TryFromProto, TryIntoProto},
3938
stub::RPCStub,
4039
},
4140
runtime::BackgroundRuntime,
4241
},
43-
database::migration::DatabaseExportAnswer,
4442
Credentials, DriverOptions, Error,
4543
};
4644

0 commit comments

Comments
 (0)