File tree Expand file tree Collapse file tree 6 files changed +17
-4
lines changed
Expand file tree Collapse file tree 6 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 2121
2222 - name : Check typos
2323 uses : crate-ci/typos@master
24-
Original file line number Diff line number Diff line change 55# Rust/Cargo
66debug /
77target /
8+ # TODO(template) Cargo.lock should be tracked in binary crates, but not in libraries
89Cargo.lock
910
1011# MSVC Windows builds of rustc generate these, which store debugging information
Original file line number Diff line number Diff line change 44members = [" examples" , " mycrate" ]
55resolver = " 2"
66default-members = [" mycrate" ]
7+
78[workspace .package ]
89version = " 0.1.0"
910edition = " 2021"
1011# TODO(template) update for your repository
1112repository = " https://github.com/NethermindEth/rust-template"
1213license = " Apache-2.0" # TODO(template) update license if needed
14+ publish = false
1315
1416[workspace .dependencies ]
1517
Original file line number Diff line number Diff line change 1+ [default ]
2+ extend-ignore-re = [
3+ " 0x[0-9a-fA-F]+" , # Hexadecimal numbers
4+ ]
5+
Original file line number Diff line number Diff line change @@ -24,9 +24,11 @@ db-path = "~/.cargo/advisory-db"
2424db-urls = [" https://github.com/rustsec/advisory-db" ]
2525yanked = " deny"
2626ignore = []
27+ unmaintained = " workspace"
2728
2829[licenses ]
2930allow = [
31+ " 0BSD" ,
3032 " MIT" ,
3133 " Apache-2.0" ,
3234 " BSD-3-Clause" ,
@@ -35,6 +37,7 @@ allow = [
3537 " CC-BY-2.0" ,
3638 " CC-BY-3.0" ,
3739 " CC-BY-4.0" ,
40+ " CC0-1.0" ,
3841 " ISC" ,
3942 " OpenSSL" ,
4043 " Unicode-3.0" ,
@@ -49,9 +52,9 @@ ignore = false
4952registries = []
5053
5154[bans ]
55+ wildcards = " deny"
5256allow-wildcard-paths = true
5357multiple-versions = " warn"
54- wildcards = " deny"
5558highlight = " all"
5659
5760[bans .workspace-dependencies ]
@@ -65,6 +68,6 @@ unknown-git = "deny"
6568allow-git = []
6669
6770[sources .allow-org ]
68- github = []
71+ github = [" NethermindEth " ]
6972gitlab = []
70- bitbucket = []
73+ bitbucket = []
Original file line number Diff line number Diff line change 1+ [toolchain ]
2+ channel = " stable"
3+ components = [" rustfmt" , " clippy" ]
You can’t perform that action at this time.
0 commit comments