From 7042c606471fa279d933c49635d60d7c72c3f990 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Mon, 7 Sep 2020 00:35:24 +0100 Subject: [PATCH] more copyright Signed-off-by: Ian Jackson --- Cargo.nail | 4 ++++ Cargo.toml | 37 +++++++++++++++++++++++++++++++++++++ src/lib.rs | 3 +++ 3 files changed, 44 insertions(+) diff --git a/Cargo.nail b/Cargo.nail index 4b201e28..9bcd4979 100644 --- a/Cargo.nail +++ b/Cargo.nail @@ -1,3 +1,7 @@ +# Copyright 2020 Ian Jackson +# SPDX-License-Identifier: AGPL-3.0-or-later +# There is NO WARRANTY. + subdirs = """ server vecdeque-stableix diff --git a/Cargo.toml b/Cargo.toml index f91970a2..cd827e85 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,42 @@ +# Copyright 2020 Ian Jackson +# SPDX-License-Identifier: AGPL-3.0-or-later +# There is NO WARRANTY. + [package] name = "game" + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +# Individual files generally contain the following tag in the copyright +# notice, instead of the full licence grant text: +# SPDX-License-Identifier: AGPL-3.0-or-later +# As is conventional, this should be read as a licence grant. +# +# Contributions are accepted based on the git commit Signed-off-by +# convention, by which the contributors' certify their contributions +# according to the Developer Certificate of Origin version 1.1 - see +# the file DEVELOPER-CERTIFICATE. +# +# Some individual files are dual-licenced and say +# "MIT-0 OR AGPL-3.0-or-later" +# Those files are available under the MIT-0 permissive licence when +# taken separately, but when distributed as part of otter, they are +# AGPLv3+. + +authors = ["Ian Jackson "] +license = "AGPL-3.0-or-later" + version = "0.0.1" edition = "2018" diff --git a/src/lib.rs b/src/lib.rs index 10699b89..dd52a1a4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,3 +1,6 @@ +// Copyright 2020 Ian Jackson +// SPDX-License-Identifier: AGPL-3.0-or-later +// There is NO WARRANTY. #![feature(proc_macro_hygiene, decl_macro)] #![feature(slice_strip)] -- 2.30.2