Skip to content

Commit ef7c052

Browse files
chore(Echo): relax dev dependency versions in docs
- Updated dependency badges in README to use latest versions without pinning - Changed Cargo.toml examples to wildcard versions for easier contributor onboarding This aligns documentation with Land's development practices where Echo (Mountain's concurrency runtime) should be tested against latest dependency versions to ensure compatibility with Mountain's native backend. The change supports ongoing scheduler optimizations seen in recent refactor commits while maintaining architectural flexibility for future Crossbeam/Tokio updates.
1 parent d88c3e7 commit ef7c052

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
[![License: CC0-1.0](https://img.shields.io/badge/License-CC0_1.0-lightgrey.svg)](https://github.com/CodeEditorLand/Echo/tree/Current/LICENSE)
1515
[![Crates.io](https://img.shields.io/crates/v/Echo.svg)](https://crates.io/crates/Echo)
1616
[![Tokio Version](https://img.shields.io/badge/Tokio-v1-blue.svg)](https://tokio.rs/)
17-
[![Crossbeam Version](https://img.shields.io/badge/Crossbeam-v0.8-blueviolet.svg)](https://github.com/crossbeam-rs/crossbeam)
17+
[![Crossbeam Version](https://img.shields.io/badge/Crossbeam-blueviolet.svg)](https://github.com/crossbeam-rs/crossbeam)
1818

1919
Welcome to **Echo**! This crate provides a powerful, structured concurrency
2020
runtime for Rust applications, built on a high-performance **work-stealing
@@ -146,11 +146,11 @@ Echo = { git = "https://github.com/CodeEditorLand/Echo.git", branch = "Current"
146146

147147
**Key Dependencies:**
148148

149-
- `tokio = { version = "1", features = ["full"] }`
150-
- `crossbeam-deque = "0.8"`
151-
- `rand = "0.8"`
152-
- `log = "0.4"`
153-
- `num_cpus = "1.0"`
149+
- `tokio = { version = "*", features = ["full"] }`
150+
- `crossbeam-deque = "*"`
151+
- `rand = "*"`
152+
- `log = "*"`
153+
- `num_cpus = "*"`
154154

155155
### Usage
156156

0 commit comments

Comments
 (0)