File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change
1
+ Pod ::Spec . new do |spec |
2
+
3
+ spec . name = "DidcommSDK"
4
+ spec . version = "0.3.2"
5
+ spec . summary = "Didcomm v2 created from rust."
6
+
7
+ spec . description = "Didcomm v2 created from rust. UNIFFI was used to convert from rust to Swift."
8
+ spec . homepage = "https://github.com/sicpa-dlab/didcomm-rust"
9
+
10
+ spec . license = { :type => 'Apache License 2.0' , :file => 'LICENSE.txt' }
11
+
12
+ spec . authors = { "Sicpa-Dlab" => "dlab@sicpa.com" }
13
+ spec . platforms = { :ios => "10.0" }
14
+ spec . source = { :http => 'https://github.com/sicpa-dlab/didcomm-rust/releases/download/v0.3.2/didcomm-swift-0.3.2.tar.gz' }
15
+ spec . swift_version = '4.0'
16
+
17
+ spec . ios . vendored_library = '*.a'
18
+ spec . source_files = [ 'didcomm.swift' , 'didcommFFI.h' ]
19
+
20
+ spec . pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64 i386' }
21
+ spec . user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64 i386' }
22
+
23
+ end
You can’t perform that action at this time.
0 commit comments