Skip to content

Commit 5dc22f4

Browse files
committed
Updates faraday dependency
1 parent 80fc3c1 commit 5dc22f4

File tree

4 files changed

+7
-12
lines changed

4 files changed

+7
-12
lines changed

Gemfile.lock

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ PATH
22
remote: .
33
specs:
44
qdrant-ruby (0.9.2)
5-
faraday (~> 1)
6-
faraday_middleware (~> 1)
5+
faraday (>= 2.0.1, < 3)
76

87
GEM
98
remote: https://rubygems.org/
@@ -12,15 +11,13 @@ GEM
1211
byebug (11.1.3)
1312
coderay (1.1.3)
1413
diff-lcs (1.5.0)
15-
faraday (1.2.0)
16-
multipart-post (>= 1.2, < 3)
17-
ruby2_keywords
18-
faraday_middleware (1.2.0)
19-
faraday (~> 1.0)
14+
faraday (2.7.10)
15+
faraday-net_http (>= 2.0, < 3.1)
16+
ruby2_keywords (>= 0.0.4)
17+
faraday-net_http (3.0.2)
2018
json (2.6.3)
2119
language_server-protocol (3.17.0.3)
2220
method_source (1.0.0)
23-
multipart-post (2.3.0)
2421
parallel (1.22.1)
2522
parser (3.2.1.1)
2623
ast (~> 2.4.1)
@@ -72,6 +69,7 @@ GEM
7269

7370
PLATFORMS
7471
x86_64-darwin-19
72+
x86_64-darwin-21
7573
x86_64-linux
7674

7775
DEPENDENCIES

lib/qdrant/client.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# frozen_string_literal: true
22

33
require "faraday"
4-
require "faraday_middleware"
54
require "forwardable"
65

76
module Qdrant

qdrant.gemspec

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ Gem::Specification.new do |spec|
3535
# For more information and examples about making a new gem, check out our
3636
# guide at: https://bundler.io/guides/creating_gem.html
3737

38-
spec.add_dependency "faraday", "~> 1"
39-
spec.add_dependency "faraday_middleware", "~> 1"
38+
spec.add_dependency "faraday", ">= 2.0.1", "< 3"
4039
spec.add_development_dependency "pry-byebug", "~> 3.9"
4140
end

spec/spec_helper.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
require "ostruct"
55
require "qdrant"
66
require "faraday"
7-
require "faraday_middleware"
87

98
RSpec.configure do |config|
109
# Enable flags like --only-failures and --next-failure

0 commit comments

Comments
 (0)