Skip to content

Commit e882571

Browse files
authored
Merge pull request #6 from integer32llc/maint
Maintenance
2 parents d82fb54 + 2451333 commit e882571

File tree

8 files changed

+334
-340
lines changed

8 files changed

+334
-340
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ jobs:
155155
run: cargo fmt --all -- --check
156156

157157
- name: Lint code
158-
run: cargo clippy -- -D warnings
158+
run: cargo clippy --workspace --all-targets -- -D warnings
159159

160160
- name: Test conformance
161161
run: cd conformance && cargo run

Cargo.lock

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,19 @@ members = [
2020
"xtask",
2121
]
2222

23+
[workspace.lints.rust]
24+
rust_2018_idioms = "deny"
25+
unused_crate_dependencies = "deny"
26+
2327
[workspace.dependencies]
2428
argh = { version = "0.1.12", default-features = false }
2529
registry-conformance = { version = "0.2.0", registry = "registry-conformance" }
2630
snafu = { version = "0.8.2", default-features = false, features = ["rust_1_65", "std"] }
2731
tokio = { version = "1.37.0", default-features = false, features = ["macros", "process", "rt-multi-thread"] }
2832

33+
[lints]
34+
workspace = true
35+
2936
[dependencies]
3037
argh.workspace = true
3138
ascii = { version = "1.1.0", default-features = false, features = ["serde", "std"] }

conformance/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ publish = false
66

77
license = "MIT OR Apache-2.0"
88

9+
[lints]
10+
workspace = true
11+
912
[dependencies]
1013
axum = { version = "0.7.5", default-features = false, features = ["http1", "http2", "tokio"] }
1114
axum-extra = { version = "0.9.3", default-features = false, features = ["typed-header"] }

conformance/src/main.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
#![deny(rust_2018_idioms)]
2-
#![deny(unused_crate_dependencies)]
3-
41
use axum::{
52
extract::Request,
63
http::StatusCode,

integration-tests/Gemfile.lock

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,29 +19,29 @@ GEM
1919
language_server-protocol (3.17.0.3)
2020
matrix (0.4.2)
2121
mini_mime (1.1.5)
22-
nokogiri (1.16.4-aarch64-linux)
22+
nokogiri (1.16.5-aarch64-linux)
2323
racc (~> 1.4)
24-
nokogiri (1.16.4-arm-linux)
24+
nokogiri (1.16.5-arm-linux)
2525
racc (~> 1.4)
26-
nokogiri (1.16.4-arm64-darwin)
26+
nokogiri (1.16.5-arm64-darwin)
2727
racc (~> 1.4)
28-
nokogiri (1.16.4-x86-linux)
28+
nokogiri (1.16.5-x86-linux)
2929
racc (~> 1.4)
30-
nokogiri (1.16.4-x86_64-darwin)
30+
nokogiri (1.16.5-x86_64-darwin)
3131
racc (~> 1.4)
32-
nokogiri (1.16.4-x86_64-linux)
32+
nokogiri (1.16.5-x86_64-linux)
3333
racc (~> 1.4)
3434
parallel (1.24.0)
3535
parser (3.3.1.0)
3636
ast (~> 2.4.1)
3737
racc
3838
public_suffix (5.0.5)
3939
racc (1.7.3)
40-
rack (3.0.10)
40+
rack (3.0.11)
4141
rack-test (2.1.0)
4242
rack (>= 1.3)
4343
rainbow (3.1.1)
44-
regexp_parser (2.9.0)
44+
regexp_parser (2.9.1)
4545
rexml (3.2.6)
4646
rspec (3.13.0)
4747
rspec-core (~> 3.13.0)
@@ -52,11 +52,11 @@ GEM
5252
rspec-expectations (3.13.0)
5353
diff-lcs (>= 1.2.0, < 2.0)
5454
rspec-support (~> 3.13.0)
55-
rspec-mocks (3.13.0)
55+
rspec-mocks (3.13.1)
5656
diff-lcs (>= 1.2.0, < 2.0)
5757
rspec-support (~> 3.13.0)
5858
rspec-support (3.13.1)
59-
rubocop (1.63.4)
59+
rubocop (1.63.5)
6060
json (~> 2.3)
6161
language_server-protocol (>= 3.17.0)
6262
parallel (~> 1.10)
@@ -73,7 +73,7 @@ GEM
7373
rubocop (~> 1.41)
7474
rubocop-factory_bot (2.25.1)
7575
rubocop (~> 1.41)
76-
rubocop-rspec (2.29.1)
76+
rubocop-rspec (2.29.2)
7777
rubocop (~> 1.40)
7878
rubocop-capybara (~> 2.17)
7979
rubocop-factory_bot (~> 2.22)

0 commit comments

Comments
 (0)