-
Notifications
You must be signed in to change notification settings - Fork 9
/
Package.swift
34 lines (32 loc) · 1.1 KB
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "TonSwift",
platforms: [
.iOS(.v13)
],
products: [
.library(name: "TonSwift", targets: ["TonSwift"]),
],
dependencies: [
.package(url: "https://github.com/attaswift/BigInt", .exact("5.3.0")),
.package(url: "https://github.com/bitmark-inc/tweetnacl-swiftwrap", .upToNextMajor(from: "1.0.0")),
.package(url: "https://github.com/jedisct1/swift-sodium", .exact("0.9.1"))
],
targets: [
.target(
name: "TonSwift",
dependencies: [
.product(name: "BigInt", package: "BigInt"),
.product(name: "TweetNacl", package: "tweetnacl-swiftwrap"),
.product(name: "Sodium", package: "swift-sodium"),
]),
.testTarget(
name: "TonSwiftTests",
dependencies: [
.byName(name: "TonSwift"),
.product(name: "BigInt", package: "BigInt"),
.product(name: "TweetNacl", package: "tweetnacl-swiftwrap"),
]),
]
)