dependabot-cargo 0.239.0 → 0.241.0
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.
- checksums.yaml +4 -4
- data/lib/dependabot/cargo/file_parser.rb +2 -2
- data/lib/dependabot/cargo/requirement.rb +1 -1
- metadata +19 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c6de1ba677ca90d91499552806b2f9a301cf5567db1b52805f144da87705b62e
|
|
4
|
+
data.tar.gz: 837a3fd2b80759d39b388dbd7e3bc69dedf47502a58a9cbfce7349a10000ecfc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 668a9a38e89a5022246f028d1d7ecf2ac4e45b31d69ce3b38960483f45c19add56582a9f3094ebb3a7ac7d88cd850ca36742a4fd58f37e8c580fdb992d7255ac
|
|
7
|
+
data.tar.gz: 3fe871361acb0258f7768ac8b52e058654c754e894ae1675bf55eadae9abfe386ebc099cbac8e037d9a3bdbfa644b0dfb02dc346113a3d330b02a151e4f3bce7
|
|
@@ -50,9 +50,9 @@ module Dependabot
|
|
|
50
50
|
msg = "This project is part of a Rust workspace but is not the " \
|
|
51
51
|
"workspace root." \
|
|
52
52
|
|
|
53
|
-
if cargo_toml
|
|
53
|
+
if cargo_toml&.directory != "/"
|
|
54
54
|
msg += "Please update your settings so Dependabot points at the " \
|
|
55
|
-
"workspace root instead of #{cargo_toml
|
|
55
|
+
"workspace root instead of #{cargo_toml&.directory}."
|
|
56
56
|
end
|
|
57
57
|
raise Dependabot::DependencyFileNotEvaluatable, msg
|
|
58
58
|
end
|
|
@@ -36,7 +36,7 @@ module Dependabot
|
|
|
36
36
|
|
|
37
37
|
return DefaultRequirement if matches[1] == ">=" && matches[2] == "0"
|
|
38
38
|
|
|
39
|
-
[matches[1] || "=", Cargo::Version.new(matches[2])]
|
|
39
|
+
[matches[1] || "=", Cargo::Version.new(T.must(matches[2]))]
|
|
40
40
|
end
|
|
41
41
|
|
|
42
42
|
# For consistency with other languages, we define a requirements array.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dependabot-cargo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.241.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dependabot
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-01-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: dependabot-common
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
19
|
+
version: 0.241.0
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - '='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.
|
|
26
|
+
version: 0.241.0
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: debug
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -206,6 +206,20 @@ dependencies:
|
|
|
206
206
|
- - "~>"
|
|
207
207
|
- !ruby/object:Gem::Version
|
|
208
208
|
version: '3.18'
|
|
209
|
+
- !ruby/object:Gem::Dependency
|
|
210
|
+
name: webrick
|
|
211
|
+
requirement: !ruby/object:Gem::Requirement
|
|
212
|
+
requirements:
|
|
213
|
+
- - ">="
|
|
214
|
+
- !ruby/object:Gem::Version
|
|
215
|
+
version: '1.7'
|
|
216
|
+
type: :development
|
|
217
|
+
prerelease: false
|
|
218
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
219
|
+
requirements:
|
|
220
|
+
- - ">="
|
|
221
|
+
- !ruby/object:Gem::Version
|
|
222
|
+
version: '1.7'
|
|
209
223
|
description: Dependabot-Cargo provides support for bumping Rust (cargo) crates via
|
|
210
224
|
Dependabot. If you want support for multiple package managers, you probably want
|
|
211
225
|
the meta-gem dependabot-omnibus.
|
|
@@ -233,7 +247,7 @@ licenses:
|
|
|
233
247
|
- Nonstandard
|
|
234
248
|
metadata:
|
|
235
249
|
bug_tracker_uri: https://github.com/dependabot/dependabot-core/issues
|
|
236
|
-
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.
|
|
250
|
+
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.241.0
|
|
237
251
|
post_install_message:
|
|
238
252
|
rdoc_options: []
|
|
239
253
|
require_paths:
|