Skip to content

Commit

Permalink
Merge branch 'dependabot/github_actions/github-actions-c4bcf5a8e2'
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Aug 5, 2024
2 parents 3604a3b + e42e88b commit 2e00b5e
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: EmbarkStudios/cargo-deny-action@v1
- uses: EmbarkStudios/cargo-deny-action@v2
with:
command: check ${{ matrix.checks }}

Expand Down
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,9 @@ futures-lite = { version = "2.1.0", default-features = false, features = ["std"]
faster-hex = { version = "0.9.0", default-features = false }
reqwest = { version = "0.12.0", default-features = false, features = ["charset", "http2", "macos-system-configuration"] } # all but the 'default-tls' feature
curl = { version = "0.4" }
winnow = { version = "0.6.0", features = ["simd"] }
unicode-bom = "2.0.2"


[package.metadata.docs.rs]
features = ["document-features", "max"]
Expand Down
9 changes: 3 additions & 6 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,7 @@
# More documentation for the advisories section can be found here:
# https://embarkstudios.github.io/cargo-deny/checks/advisories/cfg.html
[advisories]
ignore = [
# this is `rustls@0.20.9` coming in with `curl`, which doesn't have an update yet. It's only active optionally, not by default.
"RUSTSEC-2024-0336",
]
ignore = []



Expand All @@ -29,10 +26,10 @@ allow = [
"MIT",
"MIT-0",
"ISC",
"Unicode-DFS-2016",
"LicenseRef-ring",
"Unicode-DFS-2016",
"Zlib",
"Unicode-3.0"
"MPL-2.0"
]
# The confidence threshold for detecting a license from license text.
# The higher the value, the more closely the license text must be to the
Expand Down
2 changes: 1 addition & 1 deletion gix-actor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ bstr = { version = "1.3.0", default-features = false, features = [
"std",
"unicode",
] }
winnow = { version = "0.6.0", features = ["simd"] }
winnow.workspace = true
itoa = "1.0.1"
serde = { version = "1.0.114", optional = true, default-features = false, features = [
"derive",
Expand Down
8 changes: 4 additions & 4 deletions gix-attributes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@ gix-quote = { version = "^0.4.12", path = "../gix-quote" }
gix-glob = { version = "^0.16.4", path = "../gix-glob" }
gix-trace = { version = "^0.1.8", path = "../gix-trace" }

bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"]}
bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"] }
smallvec = "1.10.0"
kstring = "2.0.0"
unicode-bom = "2.0.2"
unicode-bom.workspace = true
thiserror = "1.0.26"
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]}
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }

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

[dev-dependencies]
gix-testtools = { path = "../tests/tools"}
gix-testtools = { path = "../tests/tools" }
gix-fs = { path = "../gix-fs" }

[package.metadata.docs.rs]
Expand Down
8 changes: 4 additions & 4 deletions gix-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ autotests = false
serde = ["dep:serde", "bstr/serde", "gix-sec/serde", "gix-ref/serde", "gix-glob/serde", "gix-config-value/serde"]

[dependencies]
gix-features = { version = "^0.38.2", path = "../gix-features"}
gix-features = { version = "^0.38.2", path = "../gix-features" }
gix-config-value = { version = "^0.14.7", path = "../gix-config-value" }
gix-path = { version = "^0.10.9", path = "../gix-path" }
gix-sec = { version = "^0.10.7", path = "../gix-sec" }
gix-ref = { version = "^0.45.0", path = "../gix-ref" }
gix-glob = { version = "^0.16.4", path = "../gix-glob" }

winnow = { version = "0.6.0", features = ["simd"] }
winnow.workspace = true
memchr = "2"
thiserror = "1.0.26"
unicode-bom = "2.0.2"
unicode-bom.workspace = true
bstr = { version = "1.3.0", default-features = false, features = ["std"] }
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]}
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
smallvec = "1.9.0"
once_cell = "1.14.0"

Expand Down
8 changes: 4 additions & 4 deletions gix-ignore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ gix-glob = { version = "^0.16.4", path = "../gix-glob" }
gix-path = { version = "^0.10.9", path = "../gix-path" }
gix-trace = { version = "^0.1.8", path = "../gix-trace" }

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

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

[dev-dependencies]
gix-testtools = { path = "../tests/tools"}
gix-testtools = { path = "../tests/tools" }
gix-fs = { path = "../gix-fs" }

[package.metadata.docs.rs]
Expand Down
2 changes: 1 addition & 1 deletion gix-object/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ bstr = { version = "1.3.0", default-features = false, features = [
"std",
"unicode",
] }
winnow = { version = "0.6.0", features = ["simd"] }
winnow.workspace = true
smallvec = { version = "1.4.0", features = ["write"] }
serde = { version = "1.0.114", optional = true, default-features = false, features = [
"derive",
Expand Down
2 changes: 1 addition & 1 deletion gix-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ bstr = { version = "1.3.0", default-features = false, features = [
"std",
"unicode",
] }
winnow = { version = "0.6.0", features = ["simd"] }
winnow.workspace = true

# for async-client
async-trait = { version = "0.1.51", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion gix-ref/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ gix-lock = { version = "^14.0.0", path = "../gix-lock" }
gix-tempfile = { version = "^14.0.0", default-features = false, path = "../gix-tempfile" }

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

# packed refs
Expand Down

0 comments on commit 2e00b5e

Please sign in to comment.