Skip to content

Commit 2976359

Browse files
committed
refactor: Bring project into REUSE compliance
1 parent 9ff82b3 commit 2976359

File tree

8 files changed

+29
-1
lines changed

8 files changed

+29
-1
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2025 The Neeml Developers
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
version: 2
26
updates:
37
- package-ecosystem: "cargo"

.github/workflows/dependency-review.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2025 The Neeml Developers
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
name: "Dependency Review"
26
on: [pull_request]
37

.github/workflows/verify-pr-commit.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2025 The Neeml Developers
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
name: "Conventional Commits Verification Workflow"
26

37
on:

.github/workflows/verify-reuse-compliance.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2025 The Neeml Developers
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
name: "REUSE Compliance workflow"
26

37
on:

Cargo.lock

Lines changed: 4 additions & 0 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
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: 2024 The Exchangers MailDevelopers
1+
# SPDX-FileCopyrightText: 2025 The Neeml Developers
22
#
33
# SPDX-License-Identifier: Apache-2.0
44

src/lib.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2025 The Neeml Developers
2+
//
3+
// SPDX-License-Identifier: Apache-2.0
4+
15
pub fn add(left: usize, right: usize) -> usize {
26
left + right
37
}

src/main.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2025 The Neeml Developers
2+
//
3+
// SPDX-License-Identifier: Apache-2.0
4+
15
fn main() {
26
println!("Hello, world!");
37
}

0 commit comments

Comments
 (0)