Skip to content

Commit a7c7de8

Browse files
committed
Rename the package.name to "main"
1 parent d332e21 commit a7c7de8

File tree

4 files changed

+41
-41
lines changed

4 files changed

+41
-41
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
toolchain: ${{ steps.read-rust-toolchain.outputs.toolchain }}
4444
components: rustfmt
4545

46-
- name: Rustfmt (judge)
46+
- name: Rustfmt (main)
4747
run: cargo fmt --all -- --check
4848

4949
- name: Rustfmt (xtask)
@@ -95,7 +95,7 @@ jobs:
9595
toolchain: ${{ steps.read-rust-toolchain.outputs.toolchain }}
9696
targets: ${{ matrix.target }}
9797

98-
- name: Test (judge)
98+
- name: Test (main)
9999
run: cargo test --target ${{ matrix.target }}
100100

101101
cargo-deny:
@@ -119,7 +119,7 @@ jobs:
119119
- name: Install cargo-deny
120120
run: cargo binstall cargo-deny@^0.13 --no-confirm --log-level debug
121121

122-
- name: cargo-deny (judge)
122+
- name: cargo-deny (main)
123123
run: cargo deny check
124124

125125
bottlerocket-license-scan:
@@ -140,7 +140,7 @@ jobs:
140140
- name: Install bottlerocket-license-scan
141141
run: cargo install bottlerocket-license-scan --git https://github.com/bottlerocket-os/bottlerocket-sdk
142142

143-
- name: bottlerocket-license-scan (judge)
143+
- name: bottlerocket-license-scan (main)
144144
run: |
145145
git clone https://github.com/spdx/license-list-data.git /tmp/license-list-data --depth 1
146146
~/.cargo/bin/bottlerocket-license-scan --clarify ./clarify.toml --out-dir ./license_files --spdx-data /tmp/license-list-data/json/details cargo ./Cargo.toml

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ exclude = ["./xtask"]
55
lto = true # コンパイル時間が著しく長くなってしまう場合は無し
66

77
[package]
8-
name = "judge"
8+
name = "main"
99
version = "0.0.0"
1010
edition = "2021"
1111
publish = false

deny.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ allow = [
5656
]
5757
clarify = [
5858
# https://github.com/EmbarkStudios/cargo-deny/issues/282
59-
# `judge`自体もライセンスを持つことを要求してくるため、ダミーのライセンスを宣言する
59+
# `main`自体もライセンスを持つことを要求してくるため、ダミーのライセンスを宣言する
6060
# ac-library-rsも`package.private = true`であるため、上記リンクの方法は取れない
61-
{ name = "judge", expression = "LicenseRef-AtCoderJudgeSystem", license-files = [] },
61+
{ name = "main", expression = "LicenseRef-AtCoderJudgeSystem", license-files = [] },
6262
]

0 commit comments

Comments
 (0)