├── .github └── workflows │ ├── build.yml │ └── docs.yml ├── .gitignore ├── LICENSE ├── README.md ├── examples ├── connect_and_echo.nim └── timeout_and_loop.nim ├── src └── whisky.nim ├── tests ├── config.nims └── test.nim └── whisky.nimble /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/whisky/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/whisky/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/whisky/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/whisky/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/whisky/HEAD/README.md -------------------------------------------------------------------------------- /examples/connect_and_echo.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/whisky/HEAD/examples/connect_and_echo.nim -------------------------------------------------------------------------------- /examples/timeout_and_loop.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/whisky/HEAD/examples/timeout_and_loop.nim -------------------------------------------------------------------------------- /src/whisky.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/whisky/HEAD/src/whisky.nim -------------------------------------------------------------------------------- /tests/config.nims: -------------------------------------------------------------------------------- 1 | --path:"../src" 2 | --define:ssl 3 | -------------------------------------------------------------------------------- /tests/test.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/whisky/HEAD/tests/test.nim -------------------------------------------------------------------------------- /whisky.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/whisky/HEAD/whisky.nimble --------------------------------------------------------------------------------