Skip to content

Commit 2e00b5e

Browse files
committed
Merge branch 'dependabot/github_actions/github-actions-c4bcf5a8e2'
2 parents 3604a3b + e42e88b commit 2e00b5e

File tree

10 files changed

+23
-23
lines changed

10 files changed

+23
-23
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ jobs:
187187

188188
steps:
189189
- uses: actions/checkout@v4
190-
- uses: EmbarkStudios/cargo-deny-action@v1
190+
- uses: EmbarkStudios/cargo-deny-action@v2
191191
with:
192192
command: check ${{ matrix.checks }}
193193

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,9 @@ futures-lite = { version = "2.1.0", default-features = false, features = ["std"]
303303
faster-hex = { version = "0.9.0", default-features = false }
304304
reqwest = { version = "0.12.0", default-features = false, features = ["charset", "http2", "macos-system-configuration"] } # all but the 'default-tls' feature
305305
curl = { version = "0.4" }
306+
winnow = { version = "0.6.0", features = ["simd"] }
307+
unicode-bom = "2.0.2"
308+
306309

307310
[package.metadata.docs.rs]
308311
features = ["document-features", "max"]

deny.toml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,7 @@
88
# More documentation for the advisories section can be found here:
99
# https://embarkstudios.github.io/cargo-deny/checks/advisories/cfg.html
1010
[advisories]
11-
ignore = [
12-
# this is `[email protected]` coming in with `curl`, which doesn't have an update yet. It's only active optionally, not by default.
13-
"RUSTSEC-2024-0336",
14-
]
11+
ignore = []
1512

1613

1714

@@ -29,10 +26,10 @@ allow = [
2926
"MIT",
3027
"MIT-0",
3128
"ISC",
32-
"Unicode-DFS-2016",
3329
"LicenseRef-ring",
30+
"Unicode-DFS-2016",
3431
"Zlib",
35-
"Unicode-3.0"
32+
"MPL-2.0"
3633
]
3734
# The confidence threshold for detecting a license from license text.
3835
# The higher the value, the more closely the license text must be to the

gix-actor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ bstr = { version = "1.3.0", default-features = false, features = [
2626
"std",
2727
"unicode",
2828
] }
29-
winnow = { version = "0.6.0", features = ["simd"] }
29+
winnow.workspace = true
3030
itoa = "1.0.1"
3131
serde = { version = "1.0.114", optional = true, default-features = false, features = [
3232
"derive",

gix-attributes/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@ gix-quote = { version = "^0.4.12", path = "../gix-quote" }
2222
gix-glob = { version = "^0.16.4", path = "../gix-glob" }
2323
gix-trace = { version = "^0.1.8", path = "../gix-trace" }
2424

25-
bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"]}
25+
bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"] }
2626
smallvec = "1.10.0"
2727
kstring = "2.0.0"
28-
unicode-bom = "2.0.2"
28+
unicode-bom.workspace = true
2929
thiserror = "1.0.26"
30-
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]}
30+
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
3131

3232
document-features = { version = "0.2.1", optional = true }
3333

3434
[dev-dependencies]
35-
gix-testtools = { path = "../tests/tools"}
35+
gix-testtools = { path = "../tests/tools" }
3636
gix-fs = { path = "../gix-fs" }
3737

3838
[package.metadata.docs.rs]

gix-config/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@ autotests = false
1717
serde = ["dep:serde", "bstr/serde", "gix-sec/serde", "gix-ref/serde", "gix-glob/serde", "gix-config-value/serde"]
1818

1919
[dependencies]
20-
gix-features = { version = "^0.38.2", path = "../gix-features"}
20+
gix-features = { version = "^0.38.2", path = "../gix-features" }
2121
gix-config-value = { version = "^0.14.7", path = "../gix-config-value" }
2222
gix-path = { version = "^0.10.9", path = "../gix-path" }
2323
gix-sec = { version = "^0.10.7", path = "../gix-sec" }
2424
gix-ref = { version = "^0.45.0", path = "../gix-ref" }
2525
gix-glob = { version = "^0.16.4", path = "../gix-glob" }
2626

27-
winnow = { version = "0.6.0", features = ["simd"] }
27+
winnow.workspace = true
2828
memchr = "2"
2929
thiserror = "1.0.26"
30-
unicode-bom = "2.0.2"
30+
unicode-bom.workspace = true
3131
bstr = { version = "1.3.0", default-features = false, features = ["std"] }
32-
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]}
32+
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
3333
smallvec = "1.9.0"
3434
once_cell = "1.14.0"
3535

gix-ignore/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ gix-glob = { version = "^0.16.4", path = "../gix-glob" }
2121
gix-path = { version = "^0.10.9", path = "../gix-path" }
2222
gix-trace = { version = "^0.1.8", path = "../gix-trace" }
2323

24-
bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"]}
25-
unicode-bom = "2.0.2"
26-
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]}
24+
bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"] }
25+
unicode-bom.workspace = true
26+
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
2727

2828
document-features = { version = "0.2.1", optional = true }
2929

3030
[dev-dependencies]
31-
gix-testtools = { path = "../tests/tools"}
31+
gix-testtools = { path = "../tests/tools" }
3232
gix-fs = { path = "../gix-fs" }
3333

3434
[package.metadata.docs.rs]

gix-object/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ bstr = { version = "1.3.0", default-features = false, features = [
5050
"std",
5151
"unicode",
5252
] }
53-
winnow = { version = "0.6.0", features = ["simd"] }
53+
winnow.workspace = true
5454
smallvec = { version = "1.4.0", features = ["write"] }
5555
serde = { version = "1.0.114", optional = true, default-features = false, features = [
5656
"derive",

gix-protocol/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ bstr = { version = "1.3.0", default-features = false, features = [
6262
"std",
6363
"unicode",
6464
] }
65-
winnow = { version = "0.6.0", features = ["simd"] }
65+
winnow.workspace = true
6666

6767
# for async-client
6868
async-trait = { version = "0.1.51", optional = true }

gix-ref/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ gix-lock = { version = "^14.0.0", path = "../gix-lock" }
3131
gix-tempfile = { version = "^14.0.0", default-features = false, path = "../gix-tempfile" }
3232

3333
thiserror = "1.0.34"
34-
winnow = { version = "0.6.0", features = ["simd"] }
34+
winnow.workspace = true
3535
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
3636

3737
# packed refs

0 commit comments

Comments
 (0)