From 2e008c574b819f8c98815c54a9ee4083600b8f05 Mon Sep 17 00:00:00 2001 From: Thelie Date: Sun, 27 Mar 2022 15:32:15 +0200 Subject: [PATCH 1/7] Update 'src/lib.rs' added license disclaimer --- src/lib.rs | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 69210a0..3dbbbdd 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,3 +1,20 @@ +// Copyright 2022 Daniel Mowitz +// +// This file is part of sing. +// +// sing 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. +// +// sing 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 sing. If not, see . + pub use sing_macros::*; pub use sing_parse::*; -pub use sing_util::TraitCallMessage; +pub use sing_util::TraitCallMessage; \ No newline at end of file -- 2.45.2 From 4e41ebee89f50487ee39a71e6c8086a9ae28708b Mon Sep 17 00:00:00 2001 From: Thelie Date: Sun, 27 Mar 2022 15:33:34 +0200 Subject: [PATCH 2/7] Update 'sing_util/src/lib.rs' --- sing_util/src/lib.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/sing_util/src/lib.rs b/sing_util/src/lib.rs index cf33ad8..5204850 100644 --- a/sing_util/src/lib.rs +++ b/sing_util/src/lib.rs @@ -1,3 +1,20 @@ +// Copyright 2022 Daniel Mowitz +// +// This file is part of sing. +// +// sing 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. +// +// sing 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 sing. If not, see . + use core::fmt::Debug; use std::{error::Error, collections::HashMap}; -- 2.45.2 From e0aa05a33b99b940b728a12f1ef1c5bcec95e51d Mon Sep 17 00:00:00 2001 From: Thelie Date: Sun, 27 Mar 2022 15:33:55 +0200 Subject: [PATCH 3/7] Update 'sing_util/src/serde_wrapper.rs' --- sing_util/src/serde_wrapper.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/sing_util/src/serde_wrapper.rs b/sing_util/src/serde_wrapper.rs index 51fe722..97b919a 100644 --- a/sing_util/src/serde_wrapper.rs +++ b/sing_util/src/serde_wrapper.rs @@ -1,3 +1,20 @@ +// Copyright 2022 Daniel Mowitz +// +// This file is part of sing. +// +// sing 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. +// +// sing 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 sing. If not, see . + use std::{str::FromStr, error::Error}; use proc_macro2::TokenStream; -- 2.45.2 From b553134716e6717d9eb98197b786224198131cb1 Mon Sep 17 00:00:00 2001 From: Thelie Date: Sun, 27 Mar 2022 15:34:42 +0200 Subject: [PATCH 4/7] Update 'sing_parse/build.rs' --- sing_parse/build.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/sing_parse/build.rs b/sing_parse/build.rs index 23c7d3f..a916d4b 100644 --- a/sing_parse/build.rs +++ b/sing_parse/build.rs @@ -1,3 +1,20 @@ +// Copyright 2022 Daniel Mowitz +// +// This file is part of sing. +// +// sing 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. +// +// sing 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 sing. If not, see . + extern crate lalrpop; fn main() { -- 2.45.2 From 9fd52e53bf951233dcb88b079909881e78382a87 Mon Sep 17 00:00:00 2001 From: Thelie Date: Sun, 27 Mar 2022 15:35:08 +0200 Subject: [PATCH 5/7] Update 'sing_parse/src/lib.rs' --- sing_parse/src/lib.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/sing_parse/src/lib.rs b/sing_parse/src/lib.rs index 7081755..dbd243f 100644 --- a/sing_parse/src/lib.rs +++ b/sing_parse/src/lib.rs @@ -1,3 +1,20 @@ +// Copyright 2022 Daniel Mowitz +// +// This file is part of sing. +// +// sing 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. +// +// sing 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 sing. If not, see . + use std::{error::Error}; pub use callobj::CallObj; -- 2.45.2 From 7d3b04f140ba834b1929c53f25871e0eb515fd98 Mon Sep 17 00:00:00 2001 From: Thelie Date: Sun, 27 Mar 2022 15:35:45 +0200 Subject: [PATCH 6/7] Update 'sing_parse/src/fun_parser.lalrpop' --- sing_parse/src/fun_parser.lalrpop | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/sing_parse/src/fun_parser.lalrpop b/sing_parse/src/fun_parser.lalrpop index 1ecd659..d89584d 100644 --- a/sing_parse/src/fun_parser.lalrpop +++ b/sing_parse/src/fun_parser.lalrpop @@ -1,3 +1,20 @@ +// Copyright 2022 Daniel Mowitz +// +// This file is part of sing. +// +// sing 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. +// +// sing 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 sing. If not, see . + use std::str::FromStr; use crate::callobj::CallObj; -- 2.45.2 From ea1493b3a6c821c41bb7e7360d7343c5e6ef8017 Mon Sep 17 00:00:00 2001 From: Thelie Date: Sun, 27 Mar 2022 15:36:06 +0200 Subject: [PATCH 7/7] Update 'sing_parse/src/callobj.rs' --- sing_parse/src/callobj.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/sing_parse/src/callobj.rs b/sing_parse/src/callobj.rs index 95d4161..a91fc84 100644 --- a/sing_parse/src/callobj.rs +++ b/sing_parse/src/callobj.rs @@ -1,3 +1,20 @@ +// Copyright 2022 Daniel Mowitz +// +// This file is part of sing. +// +// sing 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. +// +// sing 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 sing. If not, see . + use std::fmt; use sing_util::TraitCallMessage; use serde::{Serialize, Deserialize}; -- 2.45.2