├── .editorconfig ├── .github ├── runner.d └── workflows │ ├── master.yml │ └── pr.yml ├── .gitignore ├── LICENSE ├── README.md ├── ddoc ├── _module_info.mustache ├── builtin.ddoc ├── custom.ddoc ├── dub_package_info.ddoc.mustache ├── html.ddoc ├── keywords.ddoc ├── macros.ddoc ├── main.ddoc ├── module_index.ddoc.mustache ├── module_menu.ddoc.mustache ├── project.ddoc.mustache ├── public.ddoc └── util.ddoc ├── dub.sdl ├── linux ├── dub.sdl └── source │ └── linux │ └── basic.d ├── posix ├── dub.sdl └── source │ └── posix │ └── basic.d ├── source ├── array_example.d ├── assoc_array_example.d ├── concurrency_example.d ├── container_example.d ├── data │ ├── base64_example.d │ ├── csv_example.d │ ├── json_example.d │ ├── package.d │ └── zip_example.d ├── datetime_example.d ├── exception_example.d ├── file_example.d ├── gc_example.d ├── getopt_example.d ├── hash_example.d ├── is_example.d ├── meta_example.d ├── network_example.d ├── numeric_example.d ├── opovl_excample.d ├── parallelism_example.d ├── process_example.d ├── random_example.d ├── range_example.d ├── regex_example.d ├── sorting_example.d ├── string_example.d ├── sumtype_example.d ├── sync_example.d ├── template_example.d ├── typecons_example.d ├── uda_example.d └── unittests_example.d ├── source_docs ├── css │ └── proj_docs.css ├── img │ └── GitHub-Mark-32px.png ├── index.dd └── js │ ├── listanchors.js │ └── sidebar.js ├── subpkg ├── dub.sdl └── source │ └── subpkg │ └── test.d ├── thirdparty ├── json │ ├── dub.sdl │ └── source │ │ └── asdf_usage │ │ └── example.d ├── libdparse │ ├── dub.sdl │ └── source │ │ └── libdparse_usage │ │ └── example.d └── vibe-d │ ├── certs │ ├── client-cert-chain.pem.crt │ ├── client-cert.pem.crt │ ├── client-private.pem.key │ ├── inter-ca-cert-chain.pem.crt │ ├── inter-ca-cert.pem.crt │ ├── inter-private.pem.key │ ├── root-ca-cert.pem.crt │ ├── root-private.pem.key │ ├── server-cert-chain.pem.crt │ ├── server-cert.pem.crt │ └── server-private.pem.key │ ├── dub.sdl │ └── source │ └── vibed_usage │ ├── _common.d │ ├── auth.d │ ├── http.d │ ├── https.d │ ├── rest.d │ └── web.d └── windows ├── dub.sdl └── source └── windows └── basic.d /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/runner.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/.github/runner.d -------------------------------------------------------------------------------- /.github/workflows/master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/.github/workflows/master.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/README.md -------------------------------------------------------------------------------- /ddoc/_module_info.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/ddoc/_module_info.mustache -------------------------------------------------------------------------------- /ddoc/builtin.ddoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/ddoc/builtin.ddoc -------------------------------------------------------------------------------- /ddoc/custom.ddoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/ddoc/custom.ddoc -------------------------------------------------------------------------------- /ddoc/dub_package_info.ddoc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/ddoc/dub_package_info.ddoc.mustache -------------------------------------------------------------------------------- /ddoc/html.ddoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/ddoc/html.ddoc -------------------------------------------------------------------------------- /ddoc/keywords.ddoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/ddoc/keywords.ddoc -------------------------------------------------------------------------------- /ddoc/macros.ddoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/ddoc/macros.ddoc -------------------------------------------------------------------------------- /ddoc/main.ddoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/ddoc/main.ddoc -------------------------------------------------------------------------------- /ddoc/module_index.ddoc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/ddoc/module_index.ddoc.mustache -------------------------------------------------------------------------------- /ddoc/module_menu.ddoc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/ddoc/module_menu.ddoc.mustache -------------------------------------------------------------------------------- /ddoc/project.ddoc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/ddoc/project.ddoc.mustache -------------------------------------------------------------------------------- /ddoc/public.ddoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/ddoc/public.ddoc -------------------------------------------------------------------------------- /ddoc/util.ddoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/ddoc/util.ddoc -------------------------------------------------------------------------------- /dub.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/dub.sdl -------------------------------------------------------------------------------- /linux/dub.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/linux/dub.sdl -------------------------------------------------------------------------------- /linux/source/linux/basic.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/linux/source/linux/basic.d -------------------------------------------------------------------------------- /posix/dub.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/posix/dub.sdl -------------------------------------------------------------------------------- /posix/source/posix/basic.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/posix/source/posix/basic.d -------------------------------------------------------------------------------- /source/array_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/array_example.d -------------------------------------------------------------------------------- /source/assoc_array_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/assoc_array_example.d -------------------------------------------------------------------------------- /source/concurrency_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/concurrency_example.d -------------------------------------------------------------------------------- /source/container_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/container_example.d -------------------------------------------------------------------------------- /source/data/base64_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/data/base64_example.d -------------------------------------------------------------------------------- /source/data/csv_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/data/csv_example.d -------------------------------------------------------------------------------- /source/data/json_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/data/json_example.d -------------------------------------------------------------------------------- /source/data/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/data/package.d -------------------------------------------------------------------------------- /source/data/zip_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/data/zip_example.d -------------------------------------------------------------------------------- /source/datetime_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/datetime_example.d -------------------------------------------------------------------------------- /source/exception_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/exception_example.d -------------------------------------------------------------------------------- /source/file_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/file_example.d -------------------------------------------------------------------------------- /source/gc_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/gc_example.d -------------------------------------------------------------------------------- /source/getopt_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/getopt_example.d -------------------------------------------------------------------------------- /source/hash_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/hash_example.d -------------------------------------------------------------------------------- /source/is_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/is_example.d -------------------------------------------------------------------------------- /source/meta_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/meta_example.d -------------------------------------------------------------------------------- /source/network_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/network_example.d -------------------------------------------------------------------------------- /source/numeric_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/numeric_example.d -------------------------------------------------------------------------------- /source/opovl_excample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/opovl_excample.d -------------------------------------------------------------------------------- /source/parallelism_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/parallelism_example.d -------------------------------------------------------------------------------- /source/process_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/process_example.d -------------------------------------------------------------------------------- /source/random_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/random_example.d -------------------------------------------------------------------------------- /source/range_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/range_example.d -------------------------------------------------------------------------------- /source/regex_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/regex_example.d -------------------------------------------------------------------------------- /source/sorting_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/sorting_example.d -------------------------------------------------------------------------------- /source/string_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/string_example.d -------------------------------------------------------------------------------- /source/sumtype_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/sumtype_example.d -------------------------------------------------------------------------------- /source/sync_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/sync_example.d -------------------------------------------------------------------------------- /source/template_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/template_example.d -------------------------------------------------------------------------------- /source/typecons_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/typecons_example.d -------------------------------------------------------------------------------- /source/uda_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/uda_example.d -------------------------------------------------------------------------------- /source/unittests_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source/unittests_example.d -------------------------------------------------------------------------------- /source_docs/css/proj_docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source_docs/css/proj_docs.css -------------------------------------------------------------------------------- /source_docs/img/GitHub-Mark-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source_docs/img/GitHub-Mark-32px.png -------------------------------------------------------------------------------- /source_docs/index.dd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source_docs/index.dd -------------------------------------------------------------------------------- /source_docs/js/listanchors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source_docs/js/listanchors.js -------------------------------------------------------------------------------- /source_docs/js/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/source_docs/js/sidebar.js -------------------------------------------------------------------------------- /subpkg/dub.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/subpkg/dub.sdl -------------------------------------------------------------------------------- /subpkg/source/subpkg/test.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/subpkg/source/subpkg/test.d -------------------------------------------------------------------------------- /thirdparty/json/dub.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/thirdparty/json/dub.sdl -------------------------------------------------------------------------------- /thirdparty/json/source/asdf_usage/example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/thirdparty/json/source/asdf_usage/example.d -------------------------------------------------------------------------------- /thirdparty/libdparse/dub.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/thirdparty/libdparse/dub.sdl -------------------------------------------------------------------------------- /thirdparty/libdparse/source/libdparse_usage/example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/thirdparty/libdparse/source/libdparse_usage/example.d -------------------------------------------------------------------------------- /thirdparty/vibe-d/certs/client-cert-chain.pem.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/thirdparty/vibe-d/certs/client-cert-chain.pem.crt -------------------------------------------------------------------------------- /thirdparty/vibe-d/certs/client-cert.pem.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/thirdparty/vibe-d/certs/client-cert.pem.crt -------------------------------------------------------------------------------- /thirdparty/vibe-d/certs/client-private.pem.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/thirdparty/vibe-d/certs/client-private.pem.key -------------------------------------------------------------------------------- /thirdparty/vibe-d/certs/inter-ca-cert-chain.pem.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/thirdparty/vibe-d/certs/inter-ca-cert-chain.pem.crt -------------------------------------------------------------------------------- /thirdparty/vibe-d/certs/inter-ca-cert.pem.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/thirdparty/vibe-d/certs/inter-ca-cert.pem.crt -------------------------------------------------------------------------------- /thirdparty/vibe-d/certs/inter-private.pem.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/thirdparty/vibe-d/certs/inter-private.pem.key -------------------------------------------------------------------------------- /thirdparty/vibe-d/certs/root-ca-cert.pem.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/thirdparty/vibe-d/certs/root-ca-cert.pem.crt -------------------------------------------------------------------------------- /thirdparty/vibe-d/certs/root-private.pem.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/thirdparty/vibe-d/certs/root-private.pem.key -------------------------------------------------------------------------------- /thirdparty/vibe-d/certs/server-cert-chain.pem.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/thirdparty/vibe-d/certs/server-cert-chain.pem.crt -------------------------------------------------------------------------------- /thirdparty/vibe-d/certs/server-cert.pem.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/thirdparty/vibe-d/certs/server-cert.pem.crt -------------------------------------------------------------------------------- /thirdparty/vibe-d/certs/server-private.pem.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/thirdparty/vibe-d/certs/server-private.pem.key -------------------------------------------------------------------------------- /thirdparty/vibe-d/dub.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/thirdparty/vibe-d/dub.sdl -------------------------------------------------------------------------------- /thirdparty/vibe-d/source/vibed_usage/_common.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/thirdparty/vibe-d/source/vibed_usage/_common.d -------------------------------------------------------------------------------- /thirdparty/vibe-d/source/vibed_usage/auth.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/thirdparty/vibe-d/source/vibed_usage/auth.d -------------------------------------------------------------------------------- /thirdparty/vibe-d/source/vibed_usage/http.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/thirdparty/vibe-d/source/vibed_usage/http.d -------------------------------------------------------------------------------- /thirdparty/vibe-d/source/vibed_usage/https.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/thirdparty/vibe-d/source/vibed_usage/https.d -------------------------------------------------------------------------------- /thirdparty/vibe-d/source/vibed_usage/rest.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/thirdparty/vibe-d/source/vibed_usage/rest.d -------------------------------------------------------------------------------- /thirdparty/vibe-d/source/vibed_usage/web.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/thirdparty/vibe-d/source/vibed_usage/web.d -------------------------------------------------------------------------------- /windows/dub.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/windows/dub.sdl -------------------------------------------------------------------------------- /windows/source/windows/basic.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-jp/Cookbook/HEAD/windows/source/windows/basic.d --------------------------------------------------------------------------------