Note
If you see an error like failed to authenticate when downloading repository: git@github.com:azat-rust/cursive,
it is likely because your local Git config is rewriting https://github.com/ to git@github.com::
[url "git@github.com:"]
insteadOf = https://github.com/
Cargo's built-in Git library does not handle this case gracefully. You can either remove that config entry or tell Cargo to use the system Git client instead:
# ~/.cargo/config.toml
[net]
git-fetch-with-cli = truechdig supports tokio-console for debugging async tasks and runtime behavior.
To enable tokio console support:
-
Build with the
tokio-consolefeature:cargo build --features tokio-console
-
Run chdig:
cargo run --features tokio-console
-
In a separate terminal, start tokio-console:
# Install if needed cargo install tokio-console # Connect to the running application tokio-console