PeerDID-swift
Introduction
Welcome to peerdid-swift
, a Swift package enabling the creation and resolution of Peer DIDs.
Requirements
- Swift 5.8 or later
- Dependencies:
Installation
Swift Package Manager (SPM)
To integrate DIDCore
into your Xcode project using SPM, specify it in your Package.swift
:
dependencies: [
.package(url: "git@github.com:beatt83/peerdid-swift.git", .upToNextMajor(from: "1.0.0"))
]
Add the PeerDID target to your target's dependencies:
.target(name: "YOUR_TARGET_NAME", dependencies: [
.product(name: "PeerDID", package: "peerdid-swift"),
// ... other dependencies
])
Contribution
Feel free to contribute by opening issues, proposing pull requests, or suggesting better ways to create and resolve Peer DIDs in Swift. All contributions are welcome!
License
This project is licensed under the Apache License 2.0. See the LICENSE file for details.