Skip to content

Commit

Permalink
Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
vigna committed Jul 31, 2024
1 parent db499b4 commit 42346bb
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

## [0.1.0] - 2024-07-28
## [0.1.1] - 2024-07-28

### New

Expand Down
30 changes: 15 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "webgraph"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
description = "A Rust port of the WebGraph framework (http://webgraph.di.unimi.it/)."
repository = "https://github.com/vigna/webgraph-rs/"
Expand All @@ -27,31 +27,31 @@ epserde = "0.6.1"
sux = "0.4.1"
dsi-bitstream = "0.4.0"
dsi-progress-logger = "0.2.4"
log = "0.4.20"
log = "0.4.22"
rand = { version = "0.8.5", features = ["small_rng"] }
rayon = "1.8.1"
tempfile = "3.5.0"
bytemuck = "1.14.0"
libc = "0.2.147"
itertools = "0.12.0"
rayon = "1.10.0"
tempfile = "3.10.1"
bytemuck = "1.16.3"
libc = "0.2.155"
itertools = "0.13.0"
lender = "0.2.9"
common_traits = "0.10.0"
impl-tools = "0.10.0"
bitflags = "2.4.2"
bitflags = "2.6.0"
dary_heap = "0.3.6"
rdst = { version ="0.20.12", features = ["multi-threaded"] }
rdst = { version ="0.20.14", features = ["multi-threaded"] }
sealed = "0.5.0"

# Cli
clap = { version = "4.4.18", features = ["derive", "string"], optional = true }
clap_complete = {version = "4.4.10", optional = true}
env_logger = {version = "0.11.0", optional = true}
clap = { version = "4.5.11", features = ["derive", "string"], optional = true }
clap_complete = {version = "4.4.11", optional = true}
env_logger = {version = "0.11.5", optional = true}

# Fuzzing deps
arbitrary = { version = "1.3.2", features = ["derive"], optional = true }
zip = {version="0.6.6", optional=true}
predicates = "3.1.0"
sysinfo = "0.30.8"
zip = {version="2.1.5", optional=true}
predicates = "3.1.2"
sysinfo = "0.30.13"

[build-dependencies]
built = { version = "0.7", features= ["chrono", "git2"] }
Expand Down

0 comments on commit 42346bb

Please sign in to comment.