uiua-lang / uiua

A stack-based array programming language
https://www.uiua.org
MIT License
1.53k stars 107 forks source link

Fix `ctrlc` Dependency Version to Resolve Cargo Install Error #443

Closed syrkis closed 6 months ago

syrkis commented 6 months ago

Encountered an error when running cargo install uiua related to the ctrlc crate. Investigation revealed that ctrlc was recently updated from 3.4.2 to 3.4.3. This update appears to introduce a breaking change or compatibility issue affecting Uiua installation.

Fix: This pull request modifies Cargo.toml to specifically use ctrlc version 3.4.2, resolving the installation error:

ctrlc = {version = "=3.4.2", optional = true}

This change ensures that Uiua can be installed successfully using cargo install uiua and maintains stable functionality.