Skip to content

Commit 00fc794

Browse files
committed
fix: Fixing pods build issue
1 parent 5ff53c2 commit 00fc794

File tree

11 files changed

+225
-1366
lines changed

11 files changed

+225
-1366
lines changed

.swift-version

Lines changed: 0 additions & 1 deletion
This file was deleted.

CatCrypto.podspec

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,17 @@ Pod::Spec.new do |s|
1010
s.name = 'CatCrypto'
1111
s.version = '0.3.2'
1212
s.summary = 'An easy way for hashing and encryption.'
13-
s.description = <<-DESC
13+
s.description = <<-DESC
1414
CatCrypto include a series of hashing and encryption functions.
1515
DESC
1616
s.homepage = 'https://github.com/ImKcat/CatCrypto'
1717
s.license = { :type => 'MIT', :file => 'LICENSE' }
18-
s.author = { 'Kcat' => 'kcatdeveloper@icloud.com' }
18+
s.author = { 'Kcat' => 'imkcat@icloud.com' }
1919
s.source = { :git => 'https://github.com/ImKcat/CatCrypto.git', :tag => s.version.to_s }
2020
s.social_media_url = 'https://imkcat.com'
2121

22+
s.swift_versions = '4.0'
23+
2224
s.ios.deployment_target = '8.0'
2325
s.osx.deployment_target = '10.10'
2426
s.tvos.deployment_target = '9.0'

CatCrypto.xcodeproj/project.pbxproj

Lines changed: 140 additions & 84 deletions
Large diffs are not rendered by default.
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "1020"
4+
version = "1.3">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES">
8+
<BuildActionEntries>
9+
<BuildActionEntry
10+
buildForTesting = "YES"
11+
buildForRunning = "YES"
12+
buildForProfiling = "YES"
13+
buildForArchiving = "YES"
14+
buildForAnalyzing = "YES">
15+
<BuildableReference
16+
BuildableIdentifier = "primary"
17+
BlueprintIdentifier = "6097CDD12235D30E00D7CEC8"
18+
BuildableName = "CommonCryptoModuleMap"
19+
BlueprintName = "CommonCryptoModuleMap"
20+
ReferencedContainer = "container:CatCrypto.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
23+
</BuildActionEntries>
24+
</BuildAction>
25+
<TestAction
26+
buildConfiguration = "Debug"
27+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29+
shouldUseLaunchSchemeArgsEnv = "YES">
30+
<Testables>
31+
</Testables>
32+
<AdditionalOptions>
33+
</AdditionalOptions>
34+
</TestAction>
35+
<LaunchAction
36+
buildConfiguration = "Debug"
37+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
38+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
39+
launchStyle = "0"
40+
useCustomWorkingDirectory = "NO"
41+
ignoresPersistentStateOnLaunch = "NO"
42+
debugDocumentVersioning = "YES"
43+
debugServiceExtension = "internal"
44+
allowLocationSimulation = "YES">
45+
<MacroExpansion>
46+
<BuildableReference
47+
BuildableIdentifier = "primary"
48+
BlueprintIdentifier = "6097CDD12235D30E00D7CEC8"
49+
BuildableName = "CommonCryptoModuleMap"
50+
BlueprintName = "CommonCryptoModuleMap"
51+
ReferencedContainer = "container:CatCrypto.xcodeproj">
52+
</BuildableReference>
53+
</MacroExpansion>
54+
<AdditionalOptions>
55+
</AdditionalOptions>
56+
</LaunchAction>
57+
<ProfileAction
58+
buildConfiguration = "Release"
59+
shouldUseLaunchSchemeArgsEnv = "YES"
60+
savedToolIdentifier = ""
61+
useCustomWorkingDirectory = "NO"
62+
debugDocumentVersioning = "YES">
63+
<MacroExpansion>
64+
<BuildableReference
65+
BuildableIdentifier = "primary"
66+
BlueprintIdentifier = "6097CDD12235D30E00D7CEC8"
67+
BuildableName = "CommonCryptoModuleMap"
68+
BlueprintName = "CommonCryptoModuleMap"
69+
ReferencedContainer = "container:CatCrypto.xcodeproj">
70+
</BuildableReference>
71+
</MacroExpansion>
72+
</ProfileAction>
73+
<AnalyzeAction
74+
buildConfiguration = "Debug">
75+
</AnalyzeAction>
76+
<ArchiveAction
77+
buildConfiguration = "Release"
78+
revealArchiveInOrganizer = "YES">
79+
</ArchiveAction>
80+
</Scheme>

Sources/ModuleMaps/Argon2/bench.c

Lines changed: 0 additions & 111 deletions
This file was deleted.

Sources/ModuleMaps/Argon2/blake2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#ifndef PORTABLE_BLAKE2_H
1919
#define PORTABLE_BLAKE2_H
2020

21-
#include "argon2.h"
21+
#include <argon2.h>
2222

2323
#if defined(__cplusplus)
2424
extern "C" {

0 commit comments

Comments
 (0)