├── .gitignore ├── .mergify.yml ├── .pre-commit-config.yaml ├── BUILD ├── LICENSE.md ├── README.md ├── WORKSPACE ├── WhyCPR.md ├── cpr.BUILD ├── cpr.patch ├── curl.BUILD ├── renovate.json5 ├── transitive_workspace_setup.bzl └── workspace_setup.bzl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedronvision/bazel-make-cc-https-easy/HEAD/.gitignore -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedronvision/bazel-make-cc-https-easy/HEAD/.mergify.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedronvision/bazel-make-cc-https-easy/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedronvision/bazel-make-cc-https-easy/HEAD/BUILD -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedronvision/bazel-make-cc-https-easy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedronvision/bazel-make-cc-https-easy/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedronvision/bazel-make-cc-https-easy/HEAD/WORKSPACE -------------------------------------------------------------------------------- /WhyCPR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedronvision/bazel-make-cc-https-easy/HEAD/WhyCPR.md -------------------------------------------------------------------------------- /cpr.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedronvision/bazel-make-cc-https-easy/HEAD/cpr.BUILD -------------------------------------------------------------------------------- /cpr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedronvision/bazel-make-cc-https-easy/HEAD/cpr.patch -------------------------------------------------------------------------------- /curl.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedronvision/bazel-make-cc-https-easy/HEAD/curl.BUILD -------------------------------------------------------------------------------- /renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedronvision/bazel-make-cc-https-easy/HEAD/renovate.json5 -------------------------------------------------------------------------------- /transitive_workspace_setup.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedronvision/bazel-make-cc-https-easy/HEAD/transitive_workspace_setup.bzl -------------------------------------------------------------------------------- /workspace_setup.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedronvision/bazel-make-cc-https-easy/HEAD/workspace_setup.bzl --------------------------------------------------------------------------------