├── .github └── workflows │ ├── build.yml │ └── docs.yml ├── .gitignore ├── LICENSE ├── README.md ├── config.nims ├── curly.nimble ├── examples ├── advanced_nonblocking.nim ├── basic_server.nim ├── multiple_requests.nim ├── request_headers.nim ├── sequential_vs_parallel.nim └── single_request.nim ├── src └── curly.nim └── tests ├── config.nims ├── test.nim └── test_responsestream.nim /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/curly/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/curly/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/curly/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/curly/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/curly/HEAD/README.md -------------------------------------------------------------------------------- /config.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/curly/HEAD/config.nims -------------------------------------------------------------------------------- /curly.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/curly/HEAD/curly.nimble -------------------------------------------------------------------------------- /examples/advanced_nonblocking.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/curly/HEAD/examples/advanced_nonblocking.nim -------------------------------------------------------------------------------- /examples/basic_server.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/curly/HEAD/examples/basic_server.nim -------------------------------------------------------------------------------- /examples/multiple_requests.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/curly/HEAD/examples/multiple_requests.nim -------------------------------------------------------------------------------- /examples/request_headers.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/curly/HEAD/examples/request_headers.nim -------------------------------------------------------------------------------- /examples/sequential_vs_parallel.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/curly/HEAD/examples/sequential_vs_parallel.nim -------------------------------------------------------------------------------- /examples/single_request.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/curly/HEAD/examples/single_request.nim -------------------------------------------------------------------------------- /src/curly.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/curly/HEAD/src/curly.nim -------------------------------------------------------------------------------- /tests/config.nims: -------------------------------------------------------------------------------- 1 | --path:"../src" 2 | -------------------------------------------------------------------------------- /tests/test.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/curly/HEAD/tests/test.nim -------------------------------------------------------------------------------- /tests/test_responsestream.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/curly/HEAD/tests/test_responsestream.nim --------------------------------------------------------------------------------