Skip to content

Commit 71cba2e

Browse files
sjuddConvex, Inc.
authored andcommitted
Revert "Update Rust to nightly 2/28/24, Qdrant to 1.8.4 (#24741)" (#24896)
This reverts commit 4a2e5f4f86a3ff0ee6362fc1892ba53d6e35e216. GitOrigin-RevId: c1c0daf40e00f043023deeb486e976a3f00e1bf3
1 parent bd5aea9 commit 71cba2e

File tree

22 files changed

+1414
-1376
lines changed

22 files changed

+1414
-1376
lines changed

Cargo.lock

Lines changed: 1333 additions & 1233 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ base64 = "0.13"
1919
biscuit = "0.7.0"
2020
bitvec = "1.0.1"
2121
byteorder = "1.5.0"
22-
bytes = "1.5.0"
22+
bytes = "1.1.0"
2323
bytesize = "1.3.0"
2424
cfg-if = "1.0"
2525
chrono = "0.4.26"
@@ -56,7 +56,7 @@ hyper = "0.14.16"
5656
proc-macro2 = { version = "1.0" }
5757
imbl = "2.0.0"
5858
itertools = "0.12"
59-
jsonschema = "0.17.1"
59+
jsonschema = "0.17.0"
6060
levenshtein_automata = "0.2.1"
6161
lru = "0.12.0"
6262
maplit = "1"
@@ -84,8 +84,7 @@ prost = "0.12"
8484
prost-types = "0.12"
8585
pyo3 = "0.19.1"
8686
pyo3-asyncio = { version = "0.19.0", features = [ "tokio-runtime" ] }
87-
qdrant_segment = { git = "https://github.com/get-convex/qdrant", rev = "8819071e5c14a602d13a048a83cde38698f5b306", package = "segment" }
88-
qdrant_common = { git = "https://github.com/get-convex/qdrant", rev = "8819071e5c14a602d13a048a83cde38698f5b306", package = "qdrant_common" }
87+
qdrant_segment = { git = "https://github.com/get-convex/qdrant", rev = "76482c6e62dd37c2bcb30a298e6538678df1bd27", package = "segment" }
8988
quote = "1.0"
9089
rand = "0.8"
9190
rand_chacha = "0.3.1"

crates/common/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@
1010
#![feature(let_chains)]
1111
#![feature(nonzero_ops)]
1212
#![feature(lazy_cell)]
13+
#![feature(result_option_inspect)]
1314
#![feature(try_blocks)]
1415
#![feature(type_alias_impl_trait)]
1516
#![feature(bound_as_ref)]
17+
#![feature(bound_map)]
1618
#![feature(iter_from_coroutine)]
1719
#![feature(iterator_try_collect)]
1820
#![feature(const_trait_impl)]

crates/convex/Cargo.oss.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Client library for Convex (convex.dev)"
44
authors = [ "Convex, Inc. <[email protected]>" ]
55
version = "0.6.0"
66
edition = "2021"
7-
rust-version = "1.71.0"
7+
rust-version = "1.65.0"
88
resolver = "2"
99
license = "Apache-2.0"
1010
repository = "https://github.com/get-convex/convex-rs"
@@ -14,7 +14,7 @@ homepage = "https://www.convex.dev/"
1414
anyhow = { version = "1" }
1515
async-trait = { version = "0.1" }
1616
base64 = { version = "0.13" }
17-
bytes = { version = "1.5.0" }
17+
bytes = { version = "1.1.0" }
1818
convex_sync_types = { path = "./sync_types", version = "=0.6.0" }
1919
futures = { version = "0.3" }
2020
imbl = { version = "2.0.0" }

crates/convex/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Client library for Convex (convex.dev)"
44
authors = ["Convex, Inc. <[email protected]>"]
55
version = "0.6.0"
66
edition = "2021"
7-
rust-version = "1.71.0"
7+
rust-version = "1.65.0"
88
resolver = "2"
99
license = "Apache-2.0"
1010
repository = "https://github.com/get-convex/convex-rs"

crates/convex/sync_types/Cargo.oss.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Sync types for the Convex Websocket protocol (convex.dev)"
44
version = "0.6.0"
55
authors = [ "Convex, Inc. <[email protected]>" ]
66
edition = "2021"
7-
rust-version = "1.71.0"
7+
rust-version = "1.65.0"
88
resolver = "2"
99
license = "Apache-2.0"
1010
repository = "https://github.com/get-convex/convex-rs"

crates/convex/sync_types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Sync types for the Convex Websocket protocol (convex.dev)"
44
version = "0.6.0"
55
authors = ["Convex, Inc. <[email protected]>"]
66
edition = "2021"
7-
rust-version = "1.71.0"
7+
rust-version = "1.65.0"
88
resolver = "2"
99
license = "Apache-2.0"
1010
repository = "https://github.com/get-convex/convex-rs"

crates/database/src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@
77
#![feature(lazy_cell)]
88
#![feature(const_option)]
99
#![feature(is_sorted)]
10+
#![feature(bound_map)]
1011
#![feature(iterator_try_collect)]
1112
#![feature(never_type)]
1213
#![feature(try_blocks)]
1314
#![feature(exclusive_range_pattern)]
1415
#![feature(async_closure)]
16+
#![feature(trait_upcasting)]
1517
#![feature(impl_trait_in_assoc_type)]
1618
#![feature(cow_is_borrowed)]
17-
#![feature(trait_upcasting)]
1819

1920
mod bootstrap_model;
2021
mod committer;

crates/function_runner/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#![feature(lazy_cell)]
2+
#![feature(arc_unwrap_or_clone)]
23
#![feature(iterator_try_collect)]
34
#![feature(impl_trait_in_assoc_type)]
45
#![feature(try_blocks)]

crates/indexing/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#![feature(async_closure)]
22
#![feature(bound_as_ref)]
3+
#![feature(bound_map)]
34
#![feature(coroutines)]
45
#![feature(proc_macro_hygiene)]
56
#![feature(stmt_expr_attributes)]

0 commit comments

Comments
 (0)