Skip to content
Open
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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## `eryx-precompile` - [0.7.3](https://github.com/eryx-org/eryx/compare/eryx-precompile-v0.7.2...eryx-precompile-v0.7.3) - 2026-09-16

### Other
- update Cargo.lock dependencies

## `eryx-vfs` - [0.7.3](https://github.com/eryx-org/eryx/compare/eryx-vfs-v0.7.2...eryx-vfs-v0.7.3) - 2026-09-16

### Other
- *(vfs)* replace cap-std with cap-primitives ([#436](https://github.com/eryx-org/eryx/pull/436))

## `eryx-precompile` - [0.7.2](https://github.com/eryx-org/eryx/compare/eryx-precompile-v0.7.1...eryx-precompile-v0.7.2) - 2026-09-11

### Other
Expand Down
20 changes: 10 additions & 10 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ members = ["crates/*"]
# - cargo-nextest: Fast test runner (`cargo nextest run`)

[workspace.package]
version = "0.7.2"
version = "0.7.3"
edition = "2024"
rust-version = "1.98.1"
license = "MIT OR Apache-2.0"
Expand All @@ -26,10 +26,10 @@ clap = { version = "^4.6.6", features = ["derive", "env"] } #unified
criterion = { version = "0.8", features = ["async_tokio"] } # benchmarking
crossterm = "0.29" # terminal control
dashmap = "6" # concurrent maps
eryx = { path = "crates/eryx", version = "^0.7.2" }
eryx-macros = { path = "crates/eryx-macros", version = "^0.7.2" }
eryx-runtime = { path = "crates/eryx-runtime", version = "^0.7.2" } #unified
eryx-vfs = { path = "crates/eryx-vfs", version = "^0.7.2" } #unified
eryx = { path = "crates/eryx", version = "^0.7.3" }
eryx-macros = { path = "crates/eryx-macros", version = "^0.7.3" }
eryx-runtime = { path = "crates/eryx-runtime", version = "^0.7.3" } #unified
eryx-vfs = { path = "crates/eryx-vfs", version = "^0.7.3" } #unified
flate2 = "1.0"
futures = "0.3"
futures-concurrency = "7.6"
Expand Down
Loading