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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
- name: Semver
id: semver
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
with:
script: |
const tag = "${{ github.event.inputs.tag }}" || "${{ github.event.release.tag_name }}";
Expand Down
115 changes: 63 additions & 52 deletions Cargo.lock

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

9 changes: 5 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name = "vchord"
version.workspace = true
edition.workspace = true
publish = false
autotests = false

[lib]
name = "vchord"
Expand Down Expand Up @@ -52,7 +53,7 @@ wyhash.workspace = true
zerocopy.workspace = true

[target.'cfg(all(any(target_arch = "x86_64", target_arch = "aarch64"), any(target_os = "linux", target_os = "macos")))'.dependencies]
mimalloc = { version = "0.1.48", features = ["local_dynamic_tls"] }
mimalloc = { version = "0.1.49", features = ["local_dynamic_tls"] }

[lints]
workspace = true
Expand All @@ -67,11 +68,11 @@ edition = "2024"

[workspace.dependencies]
bumpalo = "3.20.2"
dary_heap = "0.3.8"
dary_heap = "0.3.9"
paste = "1.0.15"
rand = "0.10.0"
rand = "0.10.1"
rand_chacha = "0.10.0"
rayon = "1.11.0"
rayon = "1.12.0"
seq-macro = "0.3.6"
serde = { version = "1.0.228", features = ["derive"] }
validator = { version = "0.20.0", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/simd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ criterion = "0.8.2"
rand.workspace = true

[build-dependencies]
cc = "1.2.59"
cc = "1.2.60"

[lints]
workspace = true
Loading
Loading