├── .github └── workflows │ └── build-and-release.yml ├── .gitignore ├── .tool-versions ├── CMakeLists.txt ├── LICENSE ├── README.md ├── autocompletions ├── await.bash ├── await.fish └── await.zsh ├── await.c ├── config.yml ├── default.nix ├── demo ├── 1.gif ├── 1.yml ├── 2.gif ├── 2.yml ├── 3.gif ├── 3.yml ├── 4.gif ├── 4.yml ├── 5.gif ├── 5.yml ├── 6.gif ├── 6.yml ├── 7.gif ├── 7.yml ├── generate └── template.yml ├── dev ├── hooks └── pre-commit ├── shell.nix └── tests ├── pyproject.toml ├── test_await.py └── uv.lock /.github/workflows/build-and-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/.github/workflows/build-and-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/.gitignore -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | act 0.2.65 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/README.md -------------------------------------------------------------------------------- /autocompletions/await.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/autocompletions/await.bash -------------------------------------------------------------------------------- /autocompletions/await.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/autocompletions/await.fish -------------------------------------------------------------------------------- /autocompletions/await.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/autocompletions/await.zsh -------------------------------------------------------------------------------- /await.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/await.c -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/config.yml -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/default.nix -------------------------------------------------------------------------------- /demo/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/demo/1.gif -------------------------------------------------------------------------------- /demo/1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/demo/1.yml -------------------------------------------------------------------------------- /demo/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/demo/2.gif -------------------------------------------------------------------------------- /demo/2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/demo/2.yml -------------------------------------------------------------------------------- /demo/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/demo/3.gif -------------------------------------------------------------------------------- /demo/3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/demo/3.yml -------------------------------------------------------------------------------- /demo/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/demo/4.gif -------------------------------------------------------------------------------- /demo/4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/demo/4.yml -------------------------------------------------------------------------------- /demo/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/demo/5.gif -------------------------------------------------------------------------------- /demo/5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/demo/5.yml -------------------------------------------------------------------------------- /demo/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/demo/6.gif -------------------------------------------------------------------------------- /demo/6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/demo/6.yml -------------------------------------------------------------------------------- /demo/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/demo/7.gif -------------------------------------------------------------------------------- /demo/7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/demo/7.yml -------------------------------------------------------------------------------- /demo/generate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/demo/generate -------------------------------------------------------------------------------- /demo/template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/demo/template.yml -------------------------------------------------------------------------------- /dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/dev -------------------------------------------------------------------------------- /hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/hooks/pre-commit -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/shell.nix -------------------------------------------------------------------------------- /tests/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/tests/pyproject.toml -------------------------------------------------------------------------------- /tests/test_await.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/tests/test_await.py -------------------------------------------------------------------------------- /tests/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavaGanzin/await/HEAD/tests/uv.lock --------------------------------------------------------------------------------