Skip to content

Commit

Permalink
Bump swift-argument-parser 1.3.0 (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeykhliustin authored Mar 7, 2024
1 parent 5a17299 commit 7b7b570
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -67,20 +67,27 @@ swift_library(
def bazelpods_dependencies():
namespaced_http_archive(
name = "swift-argument-parser",
url = "https://github.com/apple/swift-argument-parser/archive/refs/tags/1.2.2.tar.gz",
strip_prefix = "swift-argument-parser-1.2.2",
sha256 = "44782ba7180f924f72661b8f457c268929ccd20441eac17301f18eff3b91ce0c",
url = "https://github.com/apple/swift-argument-parser/archive/refs/tags/1.3.0.tar.gz",
strip_prefix = "swift-argument-parser-1.3.0",
sha256 = "e5010ff37b542807346927ba68b7f06365a53cf49d36a6df13cef50d86018204",
build_file_content = namespaced_build_file([
namespaced_swift_library(
name = "ArgumentParser",
srcs = ["Sources/ArgumentParser/**/*.swift"],
deps = [":ArgumentParserToolInfo"],
copts = ["-swift-version", "5"],
copts = [
"-enable-library-evolution",
"-swift-version",
"5"
],
),
namespaced_swift_library(
name = "ArgumentParserToolInfo",
srcs = ["Sources/ArgumentParserToolInfo/**/*.swift"],
copts = ["-swift-version", "5"],
copts = [
"-enable-library-evolution",
"-swift-version", "5"
],
)
])
)
Expand Down

0 comments on commit 7b7b570

Please sign in to comment.