Skip to content

Commit

Permalink
Maintain dependencies (#853)
Browse files Browse the repository at this point in the history
* chore: update itertools

* chore: update bytecount

* chore: update ahash

* chore: update indexmap

* chore: update rustyline-derive

* chore: update pprof

* chore: update tracing-test

* chore: update predicates

* chore: maintain badges
  • Loading branch information
huitseeker authored Nov 6, 2023
1 parent f5ab086 commit 10d20d1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ rust-version = "1.71.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ahash = "0.7.6"
ahash = "0.8.6"
anyhow = { workspace = true }
anymap = "1.0.0-beta.2"
base32ct = { version = "0.2.0", features = ["std"] }
Expand All @@ -19,7 +19,7 @@ base-x = "0.2.11"
bellpepper = { workspace = true }
bellpepper-core = { workspace = true }
bincode = { workspace = true }
bytecount = "=0.6.4"
bytecount = "0.6.7"
camino = { workspace = true, features = ["serde1"] }
clap = { workspace = true, features = ["derive"] }
config = "0.13.3"
Expand All @@ -28,8 +28,8 @@ ff = { workspace = true }
fxhash = "0.2.1"
generic-array = "0.14.7"
hex = { version = "0.4.3", features = ["serde"] }
indexmap = { version = "1.9.3", features = ["rayon", "serde"] }
itertools = "0.9"
indexmap = { version = "2.1.0", features = ["rayon", "serde"] }
itertools = "0.11"
lurk-macros = { path = "lurk-macros" }
lurk-metrics = { path = "lurk-metrics" }
metrics = { workspace = true }
Expand All @@ -49,7 +49,7 @@ rand = { workspace = true }
rand_core = { version = "0.6.4", default-features = false }
rand_xorshift = "0.3.0"
rayon = "1.7.0"
rustyline-derive = "0.8.0"
rustyline-derive = "0.9.0"
serde = { workspace = true, features = ["derive"] }
serde_bytes = "0.11.12"
serde_json = { workspace = true }
Expand Down Expand Up @@ -101,11 +101,11 @@ cfg-if = "1.0.0"
ascii_table = "4.0.2"
criterion = "0.4"
hex = "0.4.3"
pprof = { version = "0.11" }
pprof = { version = "0.13" }
structopt = { version = "0.3", default-features = false }
tap = "1.0.1"
tempfile = { workspace = true }
tracing-test = "0.1"
tracing-test = "0.2"

[build-dependencies]
vergen = { version = "8", features = ["build", "git", "gitcl"] }
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Lurk

[![CircleCI](https://circleci.com/gh/lurk-lab/lurk-rs.svg?style=shield)](https://circleci.com/gh/lurk-lab/lurk-rs)
![lurk-rs](https://github.com/lurk-lab/lurk-rs/actions/workflows/ci.yml/badge.svg)
![minimum rustc 1.70][msrv-image]
[![dependency status](https://deps.rs/repo/github/lurk-lab/lurk-rs/status.svg)](https://deps.rs/repo/github/lurk-lab/lurk-rs)
![crates.io][crates-image]

[msrv-image]: https://img.shields.io/badge/rustc-1.70+-blue.svg
Expand Down
2 changes: 1 addition & 1 deletion fcomm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ tracing-subscriber = { workspace = true, features = ["env-filter"] }
assert_cmd = "2.0.12"
insta = { version = "1.31.0", features = ["json"] }
num_cpus = "1.16.0"
predicates = "2.1.5"
predicates = "3.0.4"
tempfile = { workspace = true }

1 comment on commit 10d20d1

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmarks

Table of Contents

Overview

This benchmark report shows the Fibonacci GPU benchmark.
NVIDIA GeForce RTX 4070
AMD Ryzen 9 3950X 16-Core Processor
131817664kB

Benchmark Results

LEM Prove

Fibonacci-rc=100 Fibonacci-rc=600
num-100 3.89 s (✅ 1.00x) 3.05 s (✅ 1.27x faster)
num-200 7.91 s (✅ 1.00x) 7.08 s (✅ 1.12x faster)

Made with criterion-table

Please sign in to comment.