Compare commits
6 Commits
Author | SHA1 | Date |
---|---|---|
|
ecb85b88c4 | |
|
683b94cd8f | |
|
d4859f0d9b | |
|
20762f8797 | |
|
0b47c7ea1e | |
|
a45a745dfb |
|
@ -4,4 +4,4 @@ version = 3
|
|||
|
||||
[[package]]
|
||||
name = "oox"
|
||||
version = "0.1.0"
|
||||
version = "0.1.3"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
[package]
|
||||
name = "oox"
|
||||
version = "0.1.0"
|
||||
version = "0.1.3"
|
||||
edition = "2021"
|
||||
|
|
6
LICENSE
6
LICENSE
|
@ -208,8 +208,8 @@ If you develop a new program, and you want it to be of the greatest possible use
|
|||
|
||||
To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the “copyright” line and a pointer to where the full notice is found.
|
||||
|
||||
oox
|
||||
Copyright (C) 2023 ooxie
|
||||
OOX
|
||||
Copyright (C) 2023 Ooxie
|
||||
|
||||
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
||||
|
||||
|
@ -221,7 +221,7 @@ Also add information on how to contact you by electronic and paper mail.
|
|||
|
||||
If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:
|
||||
|
||||
oox Copyright (C) 2023 ooxie
|
||||
OOX Copyright (C) 2023 Ooxie
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details.
|
||||
|
||||
|
|
|
@ -53,4 +53,4 @@ END OF GAME: If one player succeeds in aligning three of their marks, either hor
|
|||
|
||||
## License
|
||||
|
||||
The source code of this project is licensed under a [GNU General Public License v3.0](/LICENSE).
|
||||
The source code of this project is licensed under a [GNU General Public License v3.0](/ooxie/oox/src/branch/master/LICENSE).
|
||||
|
|
16
src/main.rs
16
src/main.rs
|
@ -1,3 +1,19 @@
|
|||
/* Copyright 2023 Christophe Parent (christopheparent@thatspaceandtime.org)
|
||||
*
|
||||
* This file is part of OOX.
|
||||
*
|
||||
* OOX is free software: you can redistribute it and/or modify it under the terms of the GNU
|
||||
* General Public License as published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* OOX 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 General
|
||||
* Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along with OOX. If not, see
|
||||
* <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
use std::collections::HashMap;
|
||||
use std::error::Error;
|
||||
use std::fmt::Display;
|
||||
|
|
Loading…
Reference in New Issue