@rusaint/react-native 0.13.0 → 0.13.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,11 +6,11 @@
6
6
  <dict>
7
7
  <key>ios-arm64-simulator/librusaint_ffi.a</key>
8
8
  <data>
9
- CRTTHgcW4dDq9a/FjS7ogRM21JA=
9
+ Dv0s9f5JUKf0BYEw0OWHfS/r1ww=
10
10
  </data>
11
11
  <key>ios-arm64/librusaint_ffi.a</key>
12
12
  <data>
13
- jVrayJupjiY7d7mh4Xb+c+COW/s=
13
+ y/jsAKyzMtT44LIzyebslgk/uSo=
14
14
  </data>
15
15
  </dict>
16
16
  <key>files2</key>
@@ -19,22 +19,22 @@
19
19
  <dict>
20
20
  <key>hash</key>
21
21
  <data>
22
- CRTTHgcW4dDq9a/FjS7ogRM21JA=
22
+ Dv0s9f5JUKf0BYEw0OWHfS/r1ww=
23
23
  </data>
24
24
  <key>hash2</key>
25
25
  <data>
26
- IMOZqYP7u91B5tCcee8o773fNIAbF0GegzhLIQgFu9g=
26
+ gXkOHANF1dTTePUjiGzDhM6JhENU1TMI3CmAlkdpXPU=
27
27
  </data>
28
28
  </dict>
29
29
  <key>ios-arm64/librusaint_ffi.a</key>
30
30
  <dict>
31
31
  <key>hash</key>
32
32
  <data>
33
- jVrayJupjiY7d7mh4Xb+c+COW/s=
33
+ y/jsAKyzMtT44LIzyebslgk/uSo=
34
34
  </data>
35
35
  <key>hash2</key>
36
36
  <data>
37
- MhpP35Y+OdJllMZMH224v60w+RMIo1nr1riuwx7fpP8=
37
+ SvaYT6QnerHcSIRFl1cK1eiytrvdZOZCZwc/SxEGj7Y=
38
38
  </data>
39
39
  </dict>
40
40
  </dict>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rusaint/react-native",
3
- "version": "0.13.0",
3
+ "version": "0.13.1",
4
4
  "description": "React native implementation of the rusaint, scraper library for SSU u-saint",
5
5
  "source": "./src/index.tsx",
6
6
  "main": "./lib/commonjs/index.js",
@@ -1,44 +0,0 @@
1
- # Generated by uniffi-bindgen-react-native
2
- require "json"
3
-
4
- package = JSON.parse(File.read(File.join(__dir__, "package.json")))
5
- folly_compiler_flags = '-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32'
6
-
7
- Pod::Spec.new do |s|
8
- s.name = "rusaint-react-native"
9
- s.version = package["version"]
10
- s.summary = package["description"]
11
- s.homepage = package["homepage"]
12
- s.license = package["license"]
13
- s.authors = package["author"]
14
-
15
- s.platforms = { :ios => min_ios_version_supported }
16
- s.source = { :git => "https://github.com/EATSTEAK/rusaint.git", :tag => "#{s.version}" }
17
-
18
- s.source_files = "ios/**/*.{h,m,mm,swift}", "ios/generated/**/*.{h,m,mm}", "cpp/**/*.{hpp,cpp,c,h}", "cpp/generated/**/*.{hpp,cpp,c,h}"
19
- s.vendored_frameworks = "build/RusaintReactNative.xcframework"
20
- s.dependency "uniffi-bindgen-react-native", "0.29.3-1"
21
-
22
- # Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0.
23
- # See https://github.com/facebook/react-native/blob/febf6b7f33fdb4904669f99d795eba4c0f95d7bf/scripts/cocoapods/new_architecture.rb#L79.
24
- if respond_to?(:install_modules_dependencies, true)
25
- install_modules_dependencies(s)
26
- else
27
- s.dependency "React-Core"
28
-
29
- # Don't install the dependencies when we run `pod install` in the old architecture.
30
- if ENV['RCT_NEW_ARCH_ENABLED'] == '1' then
31
- s.compiler_flags = folly_compiler_flags + " -DRCT_NEW_ARCH_ENABLED=1"
32
- s.pod_target_xcconfig = {
33
- "HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)/boost\"",
34
- "OTHER_CPLUSPLUSFLAGS" => "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1",
35
- "CLANG_CXX_LANGUAGE_STANDARD" => "c++17"
36
- }
37
- s.dependency "React-Codegen"
38
- s.dependency "RCT-Folly"
39
- s.dependency "RCTRequired"
40
- s.dependency "RCTTypeSafety"
41
- s.dependency "ReactCommon/turbomodule/core"
42
- end
43
- end
44
- end