forked from tonkeeper/ton-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TonSwift.podspec
24 lines (19 loc) · 1.17 KB
/
TonSwift.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = 'TonSwift'
s.version = '1.0.3'
s.homepage = 'https://github.com/tonkeeper/ton-swift'
s.source = { :git => 'https://github.com/tonkeeper/ton-swift.git', :tag => s.version.to_s }
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Sergey Kotov' => '[email protected]', 'Oleg Andreev' => '[email protected]' }
s.summary = 'Pure Swift implementation of TON core data structures.'
s.description = 'Pure Swift implementation of TON core data structures: integers, bitstrings, cells, bags of cells, contracts and messages. The focus of the library is type safety and serialization. It does not support connectivity to TON p2p network, or Toncenter, Tonapi.io etc.'
s.ios.deployment_target = '13.0'
s.swift_version = '5.0'
s.source_files = ["Source/*.{swift,h}", "Source/**/*.{swift,c,h}", "Source/**/**/*.{swift,c,h}"]
s.dependency 'BigInt'
s.dependency 'TweetNacl'
s.test_spec 'Tests' do |test_spec|
test_spec.source_files = ["Tests/*.{swift,h}", "Tests/**/*.{swift,c,h}", "Tests/**/**/*.{swift,c,h}"]
test_spec.frameworks = 'XCTest'
end
end