absurd-future 0.2.0

A future adapter that turns a future that never resolves (returns Infallible) into a future that can resolve to any type.
Documentation
# List all recipes
default:
	just --list --unsorted

# Run example
example-tokio:
	cargo run --example tokio

# cargo compile
cargo-compile:
    cargo test --workspace --no-run --locked

# Clippy check
cargo-clippy-check:
    cargo clippy --no-deps --workspace --locked --tests --benches --examples -- -Dwarnings

# Rustfmt check
cargo-fmt-check:
    cargo fmt --all --check

# Test
test:
	-cargo run --example tokio