forked from keefertaylor/MnemonicKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MnemonicKit.podspec
26 lines (22 loc) · 1.12 KB
/
MnemonicKit.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
25
26
Pod::Spec.new do |s|
s.name = "MnemonicKit"
s.version = "1.3.12"
s.summary = "MnemonicKit provides a Swift implementation of BIP39"
s.description = <<-DESC
MnemonicKit provides a Swift implementation of BIP39.
This library is originally forked from CKMnemonic: https://github.com/CikeQiu/CKMnemonic. Modifications are made for non-throwing APIs and support on OSX as well as iOS. Credit for most of this work is given to [email protected], [email protected].
DESC
s.homepage = "https://github.com/keefertaylor/MnemonicKit"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Keefer Taylor" => "[email protected]" }
s.source = { :git => "https://github.com/keefertaylor/MnemonicKit.git", :tag => "1.3.12" }
s.source_files = "MnemonicKit/**/*.swift",
s.swift_version = "5.2"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.dependency "CryptoSwift", "~> 1.3.0"
s.test_spec "Tests" do |test_spec|
test_spec.source_files = "Tests/*.swift"
test_spec.resources = ["Tests/*.json"]
end
end