Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
run: sudo apt-get install -y protobuf-compiler

- name: Install just
uses: taiki-e/install-action@07b4745e0c39a41822af610387492e3e53aa222b # v2.83.4
uses: taiki-e/install-action@c44f6b046f1c29ae5918b1e0bfdbb2f1813836fd # v2.84.1
with:
tool: just

Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
run: sudo apt-get install -y protobuf-compiler

- name: Install just
uses: taiki-e/install-action@07b4745e0c39a41822af610387492e3e53aa222b # v2.83.4
uses: taiki-e/install-action@c44f6b046f1c29ae5918b1e0bfdbb2f1813836fd # v2.84.1
with:
tool: just

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
run: sudo apt-get install -y protobuf-compiler

- name: Install just and cargo-llvm-cov
uses: taiki-e/install-action@07b4745e0c39a41822af610387492e3e53aa222b # v2.83.4
uses: taiki-e/install-action@c44f6b046f1c29ae5918b1e0bfdbb2f1813836fd # v2.84.1
with:
tool: just,cargo-llvm-cov

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
# the manifest, so the action installs it via its cargo-binstall fallback from lychee's
# release binaries. Pinned to a commit SHA (CodeQL requires SHAs for third-party actions).
- name: Install just and lychee
uses: taiki-e/install-action@07b4745e0c39a41822af610387492e3e53aa222b # v2.83.4
uses: taiki-e/install-action@c44f6b046f1c29ae5918b1e0bfdbb2f1813836fd # v2.84.1
with:
tool: just,lychee

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
cache: npm
cache-dependency-path: ui/package-lock.json
- name: Install just
uses: taiki-e/install-action@07b4745e0c39a41822af610387492e3e53aa222b # v2.83.4
uses: taiki-e/install-action@c44f6b046f1c29ae5918b1e0bfdbb2f1813836fd # v2.84.1
with:
tool: just
# Both steps run a single `just` recipe so the exact command can be reproduced locally
Expand Down
97 changes: 51 additions & 46 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,22 @@ result_large_err = "allow"

[dependencies]
neo4rs = "0.8.0"
thiserror = "2.0.6"
tokio = { version = "1.52.3", features = ["full", "tracing"] }
thiserror = "2.0.19"
tokio = { version = "1.53.1", features = ["full", "tracing"] }
futures = "0.3.31"
rand = "0.10.1"
histogram = { version = "1.4", features = ["serde"] }
reqwest = { version = "0.13.4", features = ["gzip"] }
strum = { version = "0.26.3", features = ["derive"] }
strum_macros = "0.28.0"
tokio-stream = { version = "0.1.17", features = ["io-util"] }
tokio-stream = { version = "0.1.19", features = ["io-util"] }
clap = { version = "4.5.23", features = ["cargo", "derive", "env"] }
clap_complete = "4.5.36"
nix = { version = "0.31.3", features = ["process", "signal"] }
falkordb = { git = "https://github.com/FalkorDB/falkordb-rs.git", tag = "v0.9.0", features = ["tokio"] }
#falkordb = { path = "/Users/barak/dev/falkordb-rs", features = ["tokio"] }
redis = { version = "1.2.4", features = ["tokio-comp"] }
serde = { version = "1.0.215", features = ["derive"] }
serde = { version = "1.0.229", features = ["derive"] }
serde_json = "1.0.143"
url = "2.5.0"
# Used for generating a timestamp-based default results directory.
Expand All @@ -48,7 +48,7 @@ lazy_static = "1.5"
hyper = { version = "0.14.31", features = ["server", "runtime", "http1", "tcp"] }
nonzero = "0.2.0"
sysinfo = "0.39.5"
toml = { version = "0.8", default-features = false, features = ["parse"] }
toml = { version = "1.1", default-features = false, features = ["parse", "serde"] }
sha2 = "0.10"
[patch."https://github.com/FalkorDB/falkordb-rs.git"]
falkordb = { path = "vendor/falkordb-rs" }
Expand All @@ -67,7 +67,7 @@ harness = false
[dev-dependencies]
# `test-util` (not in tokio's `full`) enables `#[tokio::test(start_paused = true)]` so the
# concurrency-engine throughput test drives a virtual clock deterministically.
tokio = { version = "1.52.3", features = ["test-util"] }
tokio = { version = "1.53.1", features = ["test-util"] }
# Criterion powers the C=1 latency baselines (`just synthetic-baseline` / `synthetic-compare`):
# `async_tokio` to drive the async client, `html_reports` for the browsable plots.
criterion = { version = "0.5", features = ["async_tokio", "html_reports"] }
Expand Down
Loading
Loading