Skip to content

Commit

Permalink
build: update readme and package
Browse files Browse the repository at this point in the history
  • Loading branch information
beatt83 committed Jan 17, 2024
1 parent d39dde0 commit cdbf0e5
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
24 changes: 22 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,13 @@ let package = Package(
products: [
.library(
name: "jose-swift",
targets: ["JSONWebKey", "JSONWebAlgorithms", "JSONWebEncryption", "JSONWebSignature"]
targets: [
"JSONWebKey",
"JSONWebAlgorithms",
"JSONWebEncryption",
"JSONWebSignature",
"JSONWebToken"
]
),
.library(
name: "Jose",
Expand All @@ -38,7 +44,8 @@ let package = Package(
"JSONWebKey",
"JSONWebSignature",
"JSONWebAlgorithms",
"JSONWebEncryption"
"JSONWebEncryption",
"JSONWebToken"
]
),
.target(
Expand Down Expand Up @@ -89,6 +96,19 @@ let package = Package(
name: "JWKTests",
dependencies: ["JSONWebKey", "Tools"]
),
.target(
name: "JSONWebToken",
dependencies: [
"JSONWebKey",
"JSONWebSignature",
"JSONWebEncryption",
"Tools"
]
),
.testTarget(
name: "JWTTests",
dependencies: ["JSONWebToken", "Tools"]
),
.target(
name: "Tools"
),
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,8 @@ import JSONWebSignature
import JSONWebAlgorithms
// or
import JSONWebKey
// or
import JSONWebToken
```

## Modules
Expand Down

0 comments on commit cdbf0e5

Please sign in to comment.