Sfoglia il codice sorgente

remove some unused dependencies

Mikkel Denker 1 anno fa
parent
commit
b15261b003

+ 6 - 327
Cargo.lock

@@ -17,16 +17,6 @@ version = "1.0.2"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
 
-[[package]]
-name = "aead"
-version = "0.5.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
-dependencies = [
- "crypto-common",
- "generic-array",
-]
-
 [[package]]
 name = "aes"
 version = "0.8.4"
@@ -38,31 +28,6 @@ dependencies = [
  "cpufeatures",
 ]
 
-[[package]]
-name = "aes-gcm"
-version = "0.10.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
-dependencies = [
- "aead",
- "aes",
- "cipher",
- "ctr",
- "ghash",
- "subtle",
-]
-
-[[package]]
-name = "ahash"
-version = "0.7.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
-dependencies = [
- "getrandom",
- "once_cell",
- "version_check",
-]
-
 [[package]]
 name = "ahash"
 version = "0.8.11"
@@ -244,17 +209,6 @@ dependencies = [
  "term",
 ]
 
-[[package]]
-name = "async-channel"
-version = "1.9.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
-dependencies = [
- "concurrent-queue",
- "event-listener",
- "futures-core",
-]
-
 [[package]]
 name = "async-compression"
 version = "0.4.11"
@@ -434,28 +388,6 @@ dependencies = [
  "tracing",
 ]
 
-[[package]]
-name = "axum-extra"
-version = "0.9.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0be6ea09c9b96cb5076af0de2e383bd2bc0c18f827cf1967bdd353e0b910d733"
-dependencies = [
- "axum",
- "axum-core",
- "bytes",
- "futures-util",
- "http 1.1.0",
- "http-body 1.0.0",
- "http-body-util",
- "mime",
- "pin-project-lite",
- "serde",
- "tower",
- "tower-layer",
- "tower-service",
- "tracing",
-]
-
 [[package]]
 name = "axum-macros"
 version = "0.4.1"
@@ -516,7 +448,7 @@ checksum = "3a8241f3ebb85c056b509d4327ad0358fbbba6ffb340bf388f26350aeda225b1"
 [[package]]
 name = "bincode"
 version = "2.0.0-rc.3"
-source = "git+https://github.com/bincode-org/bincode?rev=8f65c60#8f65c60f192ff6093e6a1326b9d078a3b26c9a29"
+source = "git+https://github.com/bincode-org/bincode?rev=100685b#100685bc28fd3df957d622e7007d7293a3ca2b0b"
 dependencies = [
  "bincode_derive",
  "serde",
@@ -526,7 +458,7 @@ dependencies = [
 [[package]]
 name = "bincode_derive"
 version = "2.0.0-rc.3"
-source = "git+https://github.com/bincode-org/bincode?rev=8f65c60#8f65c60f192ff6093e6a1326b9d078a3b26c9a29"
+source = "git+https://github.com/bincode-org/bincode?rev=100685b#100685bc28fd3df957d622e7007d7293a3ca2b0b"
 dependencies = [
  "virtue",
 ]
@@ -658,28 +590,6 @@ dependencies = [
  "utf8-width",
 ]
 
-[[package]]
-name = "bytecheck"
-version = "0.6.12"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
-dependencies = [
- "bytecheck_derive",
- "ptr_meta",
- "simdutf8",
-]
-
-[[package]]
-name = "bytecheck_derive"
-version = "0.6.12"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 1.0.109",
-]
-
 [[package]]
 name = "bytecount"
 version = "0.6.8"
@@ -788,7 +698,7 @@ dependencies = [
  "rand",
  "rand_distr",
  "rayon",
- "safetensors 0.4.3",
+ "safetensors",
  "thiserror",
  "yoke",
  "zip 0.6.6",
@@ -804,7 +714,7 @@ dependencies = [
  "half",
  "num-traits",
  "rayon",
- "safetensors 0.4.3",
+ "safetensors",
  "serde",
  "thiserror",
 ]
@@ -1018,15 +928,6 @@ version = "1.0.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422"
 
-[[package]]
-name = "concurrent-queue"
-version = "2.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
-dependencies = [
- "crossbeam-utils",
-]
-
 [[package]]
 name = "console"
 version = "0.15.8"
@@ -1215,7 +1116,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
 dependencies = [
  "generic-array",
- "rand_core",
  "typenum",
 ]
 
@@ -1263,15 +1163,6 @@ dependencies = [
  "memchr",
 ]
 
-[[package]]
-name = "ctr"
-version = "0.9.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
-dependencies = [
- "cipher",
-]
-
 [[package]]
 name = "darling"
 version = "0.14.4"
@@ -1607,27 +1498,6 @@ dependencies = [
  "syn 2.0.68",
 ]
 
-[[package]]
-name = "env_filter"
-version = "0.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a009aa4810eb158359dda09d0c87378e4bbb89b5a801f016885a4707ba24f7ea"
-dependencies = [
- "log",
-]
-
-[[package]]
-name = "env_logger"
-version = "0.11.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "38b35839ba51819680ba087cd351788c9a3c476841207e0b8cee0b04722343b9"
-dependencies = [
- "anstream",
- "anstyle",
- "env_filter",
- "log",
-]
-
 [[package]]
 name = "equivalent"
 version = "1.0.1"
@@ -1653,23 +1523,6 @@ dependencies = [
  "cc",
 ]
 
-[[package]]
-name = "event-listener"
-version = "2.5.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
-
-[[package]]
-name = "eventsource-stream"
-version = "0.2.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "74fef4569247a5f429d9156b9d0a2599914385dd189c539334c625d8099d90ab"
-dependencies = [
- "futures-core",
- "nom",
- "pin-project-lite",
-]
-
 [[package]]
 name = "exr"
 version = "1.72.0"
@@ -2083,16 +1936,6 @@ dependencies = [
  "wasi",
 ]
 
-[[package]]
-name = "ghash"
-version = "0.5.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
-dependencies = [
- "opaque-debug",
- "polyval",
-]
-
 [[package]]
 name = "gif"
 version = "0.13.1"
@@ -2146,7 +1989,6 @@ dependencies = [
  "num-traits",
  "rand",
  "rand_distr",
- "serde",
 ]
 
 [[package]]
@@ -2163,9 +2005,6 @@ name = "hashbrown"
 version = "0.12.3"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
-dependencies = [
- "ahash 0.7.8",
-]
 
 [[package]]
 name = "hashbrown"
@@ -2179,7 +2018,7 @@ version = "0.14.5"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
 dependencies = [
- "ahash 0.8.11",
+ "ahash",
  "allocator-api2",
  "serde",
 ]
@@ -2909,12 +2748,6 @@ dependencies = [
  "hashbrown 0.14.5",
 ]
 
-[[package]]
-name = "lz-str"
-version = "0.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "39f3d72d77227090eed75ea331285a53726e78374a1f357ff5757702c23c70cc"
-
 [[package]]
 name = "lz4_flex"
 version = "0.11.3"
@@ -3391,12 +3224,6 @@ version = "11.1.3"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
 
-[[package]]
-name = "opaque-debug"
-version = "0.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
-
 [[package]]
 name = "openraft"
 version = "0.9.5"
@@ -3786,18 +3613,6 @@ dependencies = [
  "miniz_oxide",
 ]
 
-[[package]]
-name = "polyval"
-version = "0.6.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
-dependencies = [
- "cfg-if",
- "cpufeatures",
- "opaque-debug",
- "universal-hash",
-]
-
 [[package]]
 name = "portable-atomic"
 version = "1.6.0"
@@ -3965,26 +3780,6 @@ version = "2.0.11"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac"
 
-[[package]]
-name = "ptr_meta"
-version = "0.1.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
-dependencies = [
- "ptr_meta_derive",
-]
-
-[[package]]
-name = "ptr_meta_derive"
-version = "0.1.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 1.0.109",
-]
-
 [[package]]
 name = "publicsuffix"
 version = "2.2.3"
@@ -4342,15 +4137,6 @@ version = "0.8.4"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
 
-[[package]]
-name = "rend"
-version = "0.4.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
-dependencies = [
- "bytecheck",
-]
-
 [[package]]
 name = "reqwest"
 version = "0.11.27"
@@ -4483,35 +4269,6 @@ dependencies = [
  "rio_api",
 ]
 
-[[package]]
-name = "rkyv"
-version = "0.7.44"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5cba464629b3394fc4dbc6f940ff8f5b4ff5c7aef40f29166fd4ad12acbc99c0"
-dependencies = [
- "bitvec",
- "bytecheck",
- "bytes",
- "hashbrown 0.12.3",
- "ptr_meta",
- "rend",
- "rkyv_derive",
- "seahash",
- "tinyvec",
- "uuid",
-]
-
-[[package]]
-name = "rkyv_derive"
-version = "0.7.44"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a7dddfff8de25e6f62b9d64e6e432bf1c6736c57d20323e15ee10435fbda7c65"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 1.0.109",
-]
-
 [[package]]
 name = "robotstxt"
 version = "0.1.0"
@@ -4748,16 +4505,6 @@ version = "1.0.18"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
 
-[[package]]
-name = "safetensors"
-version = "0.3.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d93279b86b3de76f820a8854dd06cbc33cfa57a417b19c47f6a25280112fb1df"
-dependencies = [
- "serde",
- "serde_json",
-]
-
 [[package]]
 name = "safetensors"
 version = "0.4.3"
@@ -4855,12 +4602,6 @@ dependencies = [
  "syn 2.0.68",
 ]
 
-[[package]]
-name = "seahash"
-version = "4.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
-
 [[package]]
 name = "security-framework"
 version = "2.11.0"
@@ -5061,12 +4802,6 @@ dependencies = [
  "quote",
 ]
 
-[[package]]
-name = "simdutf8"
-version = "0.1.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
-
 [[package]]
 name = "similar"
 version = "2.5.0"
@@ -5079,15 +4814,6 @@ version = "0.3.11"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
 
-[[package]]
-name = "sketches-ddsketch"
-version = "0.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c1e9a774a6c28142ac54bb25d25562e6bcf957493a184f15ad4eebccb23e410a"
-dependencies = [
- "serde",
-]
-
 [[package]]
 name = "slab"
 version = "0.4.9"
@@ -5182,13 +4908,10 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
 name = "stract"
 version = "0.1.0"
 dependencies = [
- "aes-gcm",
- "ahash 0.8.11",
+ "ahash",
  "anyhow",
- "async-channel",
  "async-stream",
  "axum",
- "axum-extra",
  "axum-macros",
  "base64 0.21.7",
  "bincode",
@@ -5197,8 +4920,6 @@ dependencies = [
  "bloom",
  "bytecount",
  "bytemuck",
- "byteorder 1.5.0",
- "bzip2",
  "candle-core",
  "candle-nn",
  "candle-transformers",
@@ -5213,14 +4934,12 @@ dependencies = [
  "deadpool",
  "encoding_rs",
  "enum_dispatch",
- "eventsource-stream",
  "fend-core",
  "file_store",
  "flate2",
  "fnv",
  "fst",
  "futures",
- "half",
  "hashbrown 0.14.5",
  "http 1.1.0",
  "image",
@@ -5228,10 +4947,8 @@ dependencies = [
  "insta",
  "itertools 0.11.0",
  "kuchiki",
- "libc",
  "log",
  "logos",
- "lz-str",
  "lz4_flex",
  "maplit",
  "md5",
@@ -5258,16 +4975,13 @@ dependencies = [
  "ring",
  "rio_api",
  "rio_turtle",
- "rkyv",
  "robotstxt",
  "rust-s3",
  "rust-stemmers",
  "rustc-hash",
- "safetensors 0.3.3",
  "scylla",
  "serde",
  "serde_json",
- "serde_urlencoded",
  "speedy_kv",
  "strum 0.26.3",
  "tantivy",
@@ -5287,7 +5001,6 @@ dependencies = [
  "utoipa-swagger-ui",
  "uuid",
  "whatlang",
- "xxhash-rust",
  "zimba",
 ]
 
@@ -5528,11 +5241,9 @@ dependencies = [
  "rustc-hash",
  "serde",
  "serde_json",
- "sketches-ddsketch",
  "smallvec",
  "tantivy-fst",
  "tempfile",
- "test-log",
  "thiserror",
  "time",
  "uuid",
@@ -5609,28 +5320,6 @@ dependencies = [
  "winapi",
 ]
 
-[[package]]
-name = "test-log"
-version = "0.2.16"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3dffced63c2b5c7be278154d76b479f9f9920ed34e7574201407f0b14e2bbb93"
-dependencies = [
- "env_logger",
- "test-log-macros",
- "tracing-subscriber",
-]
-
-[[package]]
-name = "test-log-macros"
-version = "0.2.16"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5999e24eaa32083191ba4e425deb75cdf25efefabe5aaccb7446dd0d4122a3f5"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.68",
-]
-
 [[package]]
 name = "thiserror"
 version = "1.0.61"
@@ -6158,16 +5847,6 @@ version = "0.1.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
 
-[[package]]
-name = "universal-hash"
-version = "0.5.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
-dependencies = [
- "crypto-common",
- "subtle",
-]
-
 [[package]]
 name = "untrusted"
 version = "0.9.0"

+ 4 - 5
Cargo.toml

@@ -24,16 +24,14 @@ lto = "thin"
 debug = true
 
 [workspace.dependencies]
-aes-gcm = "0.10.2"
 ahash = "0.8.11"
 anyhow = {version = "1.0.72", features = ["backtrace"]}
 async-channel = "1.8.0"
 async-stream = "0.3.3"
 axum = "0.7.2"
-axum-extra = {version = "0.9.0"}
 axum-macros = "0.4.0"
 base64 = "0.21.4"
-bincode = {git = "https://github.com/bincode-org/bincode", rev = "8f65c60", features = [
+bincode = {git = "https://github.com/bincode-org/bincode", rev = "100685b", features = [
   "serde",
 ]}
 bindgen = "0.69.2"
@@ -41,8 +39,6 @@ bitflags = "2.5.0"
 bitvec = {version = "1.0.1", features = ["serde"]}
 bytecount = "0.6.7"
 bytemuck = {version = "1.13.1", features = ["derive"]}
-byteorder = "1.4.3"
-bzip2 = "0.4.4"
 candle-core = "0.3.3"
 candle-nn = "0.3.3"
 candle-transformers = "0.3.3"
@@ -72,6 +68,7 @@ image = "0.25.1"
 indicatif = {version = "0.17.7", features = ["rayon"]}
 insta = "1.31"
 itertools = "0.11.0"
+js-sys = "0.3.60"
 lalrpop = {version = "0.20.0", features = ["lexer"]}
 lalrpop-util = {version = "0.20.0", features = ["lexer"]}
 libc = "0.2.142"
@@ -121,6 +118,7 @@ rustc-hash = "1.1"
 safetensors = "0.3.1"
 scylla = {version = "0.12.0", features = ["chrono"]}
 serde = {version = "1.0.137", features = ["rc", "derive"]}
+serde-wasm-bindgen = "0.6.3"
 serde_json = "1.0.81"
 serde_urlencoded = "0.7.1"
 stable_deref_trait = "1.2.0"
@@ -141,6 +139,7 @@ url = {version = "2.4.0", features = ["serde"]}
 utoipa = {version = "4.2.3", features = ["axum_extras"]}
 utoipa-swagger-ui = {version = "7.0.0", features = ["axum"]}
 uuid = "1.1.2"
+wasm-bindgen = "0.2.83"
 whatlang = {version = "0.16.0", features = ["serde"]}
 xxhash-rust = {version = "0.8.10", features = ["xxh3", "const_xxh3"]}
 zstd = "0.13"

File diff suppressed because it is too large
+ 63 - 885
assets/licenses.html


+ 1 - 1
crates/bloom/Cargo.toml

@@ -10,4 +10,4 @@ version = "0.1.0"
 bincode.workspace = true
 bitvec.workspace = true
 serde.workspace = true
-xxhash-rust = "0.8.10"
+xxhash-rust.workspace = true

+ 8 - 9
crates/client-wasm/Cargo.toml

@@ -19,12 +19,11 @@ wasm-opt = false
 crate-type = ["cdylib", "rlib"]
 
 [dependencies]
-js-sys = "0.3.60"
-serde = { version = "1.0.137", features = ["rc", "derive"] }
-serde-wasm-bindgen = "0.6.3"
-serde_json = "1.0"
-thiserror = "1.0.31"
-wasm-bindgen = "0.2.83"
-bincode = { workspace = true }
-
-optics = { path = "../optics" }
+bincode.workspace = true
+js-sys.workspace = true
+optics = {path = "../optics"}
+serde-wasm-bindgen.workspace = true
+serde.workspace = true
+serde_json.workspace = true
+thiserror.workspace = true
+wasm-bindgen.workspace = true

+ 0 - 13
crates/core/Cargo.toml

@@ -21,12 +21,9 @@ name = "stract"
 path = "src/main.rs"
 
 [dependencies]
-aes-gcm.workspace = true
 ahash.workspace = true
 anyhow.workspace = true
-async-channel.workspace = true
 async-stream.workspace = true
-axum-extra.workspace = true
 axum-macros.workspace = true
 axum.workspace = true
 base64.workspace = true
@@ -36,8 +33,6 @@ bitvec.workspace = true
 bloom = {path = "../bloom"}
 bytecount.workspace = true
 bytemuck.workspace = true
-byteorder.workspace = true
-bzip2.workspace = true
 candle-core.workspace = true
 candle-nn.workspace = true
 candle-transformers.workspace = true
@@ -51,24 +46,20 @@ dashmap.workspace = true
 deadpool.workspace = true
 encoding_rs.workspace = true
 enum_dispatch.workspace = true
-eventsource-stream.workspace = true
 fend-core.workspace = true
 file_store = {path = "../file-store"}
 flate2.workspace = true
 fnv.workspace = true
 fst.workspace = true
 futures.workspace = true
-half.workspace = true
 hashbrown.workspace = true
 http.workspace = true
 image.workspace = true
 indicatif.workspace = true
 itertools.workspace = true
 kuchiki = {path = "../kuchiki"}
-libc.workspace = true
 log.workspace = true
 logos.workspace = true
-lz-str.workspace = true
 lz4_flex.workspace = true
 md5.workspace = true
 memmap2.workspace = true
@@ -92,16 +83,13 @@ reqwest.workspace = true
 ring.workspace = true
 rio_api.workspace = true
 rio_turtle.workspace = true
-rkyv.workspace = true
 robotstxt = {path = "../robotstxt"}
 rust-s3.workspace = true
 rust-stemmers.workspace = true
 rustc-hash.workspace = true
-safetensors.workspace = true
 scylla.workspace = true
 serde.workspace = true
 serde_json.workspace = true
-serde_urlencoded.workspace = true
 speedy_kv = {path = "../speedy-kv"}
 strum.workspace = true
 tantivy.workspace = true
@@ -119,7 +107,6 @@ utoipa-swagger-ui.workspace = true
 utoipa.workspace = true
 uuid.workspace = true
 whatlang.workspace = true
-xxhash-rust.workspace = true
 zimba = {path = "../zimba"}
 
 [target.'cfg(not(target_env = "msvc"))'.dependencies]

+ 1 - 0
crates/optics-lsp/.gitignore

@@ -1 +1,2 @@
 *.vsix
+target

+ 2 - 2
crates/optics-lsp/Cargo.lock

@@ -35,7 +35,7 @@ checksum = "3a8241f3ebb85c056b509d4327ad0358fbbba6ffb340bf388f26350aeda225b1"
 [[package]]
 name = "bincode"
 version = "2.0.0-rc.3"
-source = "git+https://github.com/bincode-org/bincode?rev=8f65c60#8f65c60f192ff6093e6a1326b9d078a3b26c9a29"
+source = "git+https://github.com/bincode-org/bincode?rev=100685b#100685bc28fd3df957d622e7007d7293a3ca2b0b"
 dependencies = [
  "bincode_derive",
  "serde",
@@ -45,7 +45,7 @@ dependencies = [
 [[package]]
 name = "bincode_derive"
 version = "2.0.0-rc.3"
-source = "git+https://github.com/bincode-org/bincode?rev=8f65c60#8f65c60f192ff6093e6a1326b9d078a3b26c9a29"
+source = "git+https://github.com/bincode-org/bincode?rev=100685b#100685bc28fd3df957d622e7007d7293a3ca2b0b"
 dependencies = [
  "virtue",
 ]

+ 0 - 2
crates/tantivy/Cargo.toml

@@ -53,7 +53,6 @@ rust-stemmers = "1.2.0"
 rustc-hash = "1.1.0"
 serde = {version = "1.0.136", features = ["derive"]}
 serde_json = "1.0.79"
-sketches-ddsketch = {version = "0.3.0", features = ["use_serde"]}
 smallvec = "1.8.0"
 tantivy-fst = "0.5"
 tempfile = {version = "3.3.0", optional = true}
@@ -79,7 +78,6 @@ pretty_assertions = "1.2.1"
 proptest = "1.0.0"
 rand = "0.8.5"
 rand_distr = "0.4.3"
-test-log = "0.2.10"
 time = {version = "0.3.10", features = ["serde-well-known", "macros"]}
 zipf = "7.0.0"
 

Some files were not shown because too many files changed in this diff