Skip to content

Commit

Permalink
[ref] Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
ppodolsky committed May 19, 2024
1 parent a2c4591 commit 72f11e6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/summa-wasm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@

name: summa-wasm
on:
release:
types: [ published ]
workflow_dispatch: {}
env:
CARGO_TERM_COLOR: always
jobs:
Expand Down
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ derive_builder = "0.20.0"
downcast-rs = "1.2"
fasteval2 = { version = "2.1.1", features = ["unsafe-vars"] }
futures = "0.3"
hyper = { version = "0.14", default_features = false, features = ["client", "http1", "http2", "tcp"] }
hyper = { version = "0.14", default-features = false, features = ["client", "http1", "http2", "tcp"] }
hyper-tls = { version = "0.5.0", features = ["vendored"] }
instant = { version = "0.1", default_features = false, features = [ "inaccurate", "wasm-bindgen" ] }
instant = { version = "0.1", default-features = false, features = [ "inaccurate", "wasm-bindgen" ] }
itertools = "0.12.0"
lazy_static = "1.4"
libz-sys = { version = "1.1", features = ["static"] }
Expand All @@ -36,19 +36,19 @@ prost = "0.12"
rand = { version = "0.8", features = ["small_rng"] }
rayon = "1.6.1"
regex = "1.8"
serde = { version = "1.0", default_features = false, features = ["derive", "std"] }
serde = { version = "1.0", default-features = false, features = ["derive", "std"] }
serde_bytes = "0.11"
serde_cbor = "0.11"
serde_json = { version = "1.0" }
serde_yaml = { version = "0.8" }
strfmt = "0.2"
summa-proto = { version = "0.36.1", path = "./summa-proto", default_features = false }
summa-proto = { version = "0.36.1", path = "./summa-proto", default-features = false }
take_mut = "0.2"
tantivy = { package = "izihawa-tantivy", version = "0.22.6", default_features = false, features = ["quickwit", "sstable-termdict", "zstd-compression"] }
tantivy = { package = "izihawa-tantivy", version = "0.22.6", default-features = false, features = ["quickwit", "sstable-termdict", "zstd-compression"] }
tantivy-common = { package = "izihawa-tantivy-common", version = "0.7" }
tantivy-query-grammar = { package = "izihawa-tantivy-query-grammar", version = "0.22" }
thiserror = "1.0"
time = { version = "0.3", features = ["serde-well-known", "wasm-bindgen"] }
tokio = { version = "1.35.1", default_features = false }
tokio = { version = "1.35.1", default-features = false }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
2 changes: 1 addition & 1 deletion summa-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,6 @@ tantivy-common = { workspace = true }
tantivy-query-grammar = { workspace = true }
thiserror = { workspace = true }
time = { workspace = true }
tokio = { workspace = true, default_features = false, features = ["macros", "signal-hook-registry", "sync"] }
tokio = { workspace = true, default-features = false, features = ["macros", "signal-hook-registry", "sync"] }
tracing = { workspace = true }
xmlparser = "0.13"
4 changes: 2 additions & 2 deletions summa-embed-py/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ pyo3-asyncio = { version = "^0.19", features = ["attributes", "tokio-runtime"]
pyo3-log = "^0.8"
pythonize = "^0.19"
serde_json = "1.0"
summa-core = { version = "0.23.3", path = "../summa-core", default_features = false, features = ["fs", "hyper-external-request", "tokio-rt"] }
summa-server = { version = "0.23.8", path = "../summa-server", default_features = false }
summa-core = { version = "0.23.3", path = "../summa-core", default-features = false, features = ["fs", "hyper-external-request", "tokio-rt"] }
summa-server = { version = "0.23.8", path = "../summa-server", default-features = false }
summa-proto = { workspace = true }
tantivy = { workspace = true }
tokio = { workspace = true }

0 comments on commit 72f11e6

Please sign in to comment.