Skip to content

Commit 8e3d9c6

Browse files
author
no30bit
committed
sync-cfg
1 parent 7f3de59 commit 8e3d9c6

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

rust/deny.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ allow-git = [
5858
"https://github.com/txpipe/kes",
5959
"https://github.com/txpipe/curve25519-dalek",
6060
"https://github.com/input-output-hk/mithril",
61+
# Maintained fork of an archived crates-io version.
62+
"https://github.com/dariusc93/rust-ipfs",
6163
]
6264

6365
[licenses]
@@ -81,6 +83,7 @@ allow = [
8183
"Zlib",
8284
"MIT-0",
8385
"CDLA-Permissive-2.0",
86+
"OpenSSL",
8487
]
8588
exceptions = [
8689
#{ allow = ["Zlib"], crate = "tinyvec" },
@@ -94,15 +97,16 @@ expression = "Apache-2.0 WITH LLVM-exception"
9497
license-files = [{ path = "../../../LICENSE", hash = 0x001c7e6c }]
9598

9699
[[licenses.clarify]]
97-
crate = "hdf5-src"
100+
crate = "hdf5-metno-src"
98101
expression = "MIT"
99-
license-files = [{ path = "../LICENSE-MIT", hash = 0x001c7e6c }]
102+
license-files = [{ path = "ext/hdf5/COPYING", hash = 0xf13e3591 }]
100103

101104
[[licenses.clarify]]
102105
crate = "ring"
103106
expression = "MIT"
104107
license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]
105108

109+
106110
# SPDX considers OpenSSL to encompass both the OpenSSL and SSLeay licenses
107111
# https://spdx.org/licenses/OpenSSL.html
108112
# ISC - Both BoringSSL and ring use this for their new files

rust/rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "1.85"
2+
channel = "1.88"
33
profile = "default"

rust/rustfmt.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ match_block_trailing_comma = true
3535
max_width = 100
3636

3737
# Comments:
38-
normalize_comments = true
38+
normalize_comments = false
3939
normalize_doc_attributes = false
4040
wrap_comments = true
4141
comment_width = 90 # small excess is okay but prefer 80
@@ -51,7 +51,7 @@ imports_granularity = "Crate"
5151

5252
# Arguments:
5353
use_small_heuristics = "Default"
54-
fn_params_layout = "Compressed"
54+
fn_params_layout = "Vertical"
5555
overflow_delimited_expr = true
5656
where_single_line = true
5757

0 commit comments

Comments
 (0)