Fix default-features and missing path dependencies

This commit is contained in:
Mubelotix
2025-06-25 13:57:43 +02:00
parent 35f774dfc9
commit c2259c018a
14 changed files with 75 additions and 451 deletions

View File

@@ -52,11 +52,11 @@ opt-level = 3
[workspace.dependencies]
actix-cors = "0.7.1"
actix-http ="3.11.0"
actix-http = { version = "3.11.0", default-features = false }
actix-rt = "2.10.0"
actix-utils = "3.0.1"
actix-web = "4.11.0"
actix-web-lab = "0.24.1"
actix-web = { version = "4.11.0", default-features = false }
actix-web-lab = { version = "0.24.1", default-features = false }
allocator-api2 = "0.3.0"
anyhow = "1.0.98"
arbitrary = "1.4.1"
@@ -79,7 +79,7 @@ candle-core = "0.9.1"
candle-nn = "0.9.1"
candle-transformers = "0.9.1"
cargo_toml = "0.22.1"
charabia = "0.9.6"
charabia = { version="0.9.6", default-features = false }
clap = "4.5.40"
color-spantrace = "0.3.0"
concat-arrays = "0.1.2"
@@ -93,18 +93,18 @@ either = "1.15.0"
enum-iterator = "2.1.0"
fastrand = "2.3.0"
flate2 = "1.1.2"
flume = "0.11.1"
flume = { version="0.11.1", default-features = false }
fst = "0.4.7"
futures = "0.3.31"
futures-util = "0.3.31"
fxhash = "0.2.1"
fxprof-processed-profile = "0.7.0"
geoutils = "0.5.1"
grenad = "0.5.0"
grenad = { version="0.5.0", default-features = false }
hashbrown = "0.15.4"
heed = "0.22.0"
heed = { version="0.22.0", default-features = false }
hex = "0.4.3"
hf-hub = { git = "https://github.com/dureuill/hf-hub.git", branch = "rust_tls" }
hf-hub = { git = "https://github.com/dureuill/hf-hub.git", branch = "rust_tls", default-features = false }
hmac = "0.12.1"
http = "1.3.1"
indexmap = "2.9.0"
@@ -141,12 +141,12 @@ rand_chacha = "0.3.1"
rayon = "1.10.0"
regex = "1.11.1"
regex-lite = "0.1.6"
reqwest = "0.12.20"
reqwest = { version="0.12.20", default-features = false }
rhai = "1.22.2"
roaring = "0.10.12"
rstar = "0.12.2"
rustc-hash = "2.1.1"
rustls = "0.23.28"
rustls = { version="0.23.28", default-features = false }
rustls-pemfile = "2.2.0"
rustls-pki-types = "1.12.0"
secrecy = "0.10.3"
@@ -173,7 +173,7 @@ thiserror = "2.0.12"
thread_local = "1.1.9"
tiktoken-rs = "0.7.0"
time = "0.3.41"
tokenizers = { git = "https://github.com/huggingface/tokenizers.git", tag = "v0.15.2", version = "0.15.2" }
tokenizers = { git = "https://github.com/huggingface/tokenizers.git", tag = "v0.15.2", version = "0.15.2", default-features = false }
tokio = "1.45.1"
toml = "0.8.23"
tracing = "0.1.41"
@@ -191,3 +191,5 @@ vergen-git2 = "1.0.7"
wiremock = "0.6.3"
yaup = "0.3.1"
zip = "4.1.0"
cargo_metadata = "0.20.0"
futures-core = "0.3.31"