|
| 1 | +""" |
| 2 | +A Swift library for accessing Apple's App Store Connect API and Enterprise Program API. |
| 3 | +""" |
| 4 | + |
| 5 | +module( |
| 6 | + name = "asc_swift", |
| 7 | + version = "1.3.0", |
| 8 | +) |
| 9 | + |
| 10 | +bazel_dep(name = "apple_support", version = "1.17.1") |
| 11 | +bazel_dep(name = "platforms", version = "0.0.10") |
| 12 | +bazel_dep(name = "rules_apple", version = "3.16.0") |
| 13 | +bazel_dep(name = "rules_cc", version = "0.0.17") |
| 14 | +bazel_dep(name = "rules_swift", version = "2.3.0") |
| 15 | + |
| 16 | +bazel_dep(name = "aspect_bazel_lib", version = "2.9.4", dev_dependency = True) |
| 17 | +bazel_dep(name = "rules_multirun", version = "0.10.0", dev_dependency = True) |
| 18 | + |
| 19 | +asc_swift_deps = use_extension("//bazel:extensions.bzl", "asc_swift_deps") |
| 20 | +use_repo( |
| 21 | + asc_swift_deps, |
| 22 | + "com_github_apple_swift_crypto", |
| 23 | + "com_github_createapi_urlqueryencoder", |
| 24 | +) |
| 25 | + |
| 26 | +asc_swift_dev_deps = use_extension("//bazel:extensions.bzl", "asc_swift_dev_deps", dev_dependency = True) |
| 27 | +use_repo( |
| 28 | + asc_swift_dev_deps, |
| 29 | + "com_apple_app_store_connect_api", |
| 30 | + "com_apple_enterprise_program_api", |
| 31 | + "com_github_aaronsky_createapi", |
| 32 | + "com_github_apple_swift_argument_parser", |
| 33 | + "com_github_cosmo_grammaticalnumber", |
| 34 | + "com_github_createapi_openapikit", |
| 35 | + "com_github_createapi_yams", |
| 36 | + "com_github_eonist_filewatcher", |
| 37 | + "com_github_liamnichols_swift_configuration_parser", |
| 38 | +) |
0 commit comments