when the PR #221 was ready to be merged, the CI ran failed, the error info is as below:
Downloaded camino v1.2.2
Downloaded askalonov0.4.6
warning: profile package spec ^insta^ in profile ^dev did not match any packages
Did you mean bstr?
warning: profile package spec similar in profile dev did not match any packages
error: failed to compile cargo-deny v0.15.1, intermediate artifacts can be found at /tmp/cargo-installgwuczW .
To reuse those artifacts with a future compilation, set the environment variable *CARGO_TARGET_DIR` to that path.
Caused by:
rustc 1.85.1 is not supported by the following package:
home@0.5.12 requires rustc 1.88
Try re-running cargo install with --locked
Error: Process completed with exit code 101.
it seems like CI job Deny has met some version conficts:
in ".github/workflows/ci.yml", Job Deny requires rustc 1.88
- name: Deny
run: cargo install cargo-deny@0.15.1 && cargo deny -L warn --all-features chec
while in "rust-toolchain.toml"
[toolchain]
channel = "1.85"
components = ["rustfmt", "clippy", "llvm-tools"]
when the PR #221 was ready to be merged, the CI ran failed, the error info is as below:
it seems like CI job Deny has met some version conficts:
in ".github/workflows/ci.yml", Job Deny requires rustc 1.88
while in "rust-toolchain.toml"