Change edition. Update copyright year.

This commit is contained in:
scoobybejesus 2023-10-19 17:17:51 -04:00
parent 37917bbad2
commit d2a255ad2e
31 changed files with 34 additions and 34 deletions

4
Cargo.lock generated
View File

@ -250,7 +250,7 @@ checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
[[package]] [[package]]
name = "crptls" name = "crptls"
version = "0.2.1" version = "0.2.2"
dependencies = [ dependencies = [
"chrono", "chrono",
"csv", "csv",
@ -263,7 +263,7 @@ dependencies = [
[[package]] [[package]]
name = "cryptools" name = "cryptools"
version = "0.12.1" version = "0.12.2"
dependencies = [ dependencies = [
"chrono", "chrono",
"crptls", "crptls",

View File

@ -1,8 +1,8 @@
[package] [package]
name = "cryptools" name = "cryptools"
version = "0.12.1" version = "0.12.2"
authors = ["scoobybejesus <scoobybejesus@users.noreply.github.com>"] authors = ["scoobybejesus <scoobybejesus@users.noreply.github.com>"]
edition = "2018" edition = "2021"
description = "Command-line utility for processing cryptocurrency transactions into 'lots' and 'movements'." description = "Command-line utility for processing cryptocurrency transactions into 'lots' and 'movements'."
[features] [features]

View File

@ -1,4 +1,4 @@
// Copyright (c) 2017-2020, scoobybejesus // Copyright (c) 2017-2023, scoobybejesus
// //
// All rights reserved. // All rights reserved.
// //

View File

@ -1,8 +1,8 @@
[package] [package]
name = "crptls" name = "crptls"
version = "0.2.1" version = "0.2.2"
authors = ["scoobybejesus <scoobybejesus@users.noreply.github.com>"] authors = ["scoobybejesus <scoobybejesus@users.noreply.github.com>"]
edition = "2018" edition = "2021"
[dependencies] [dependencies]
rust_decimal = "1.32" rust_decimal = "1.32"

View File

@ -1,4 +1,4 @@
// Copyright (c) 2017-2020, scoobybejesus // Copyright (c) 2017-2023, scoobybejesus
// //
// All rights reserved. // All rights reserved.
// //

View File

@ -1,4 +1,4 @@
// Copyright (c) 2017-2020, scoobybejesus // Copyright (c) 2017-2023, scoobybejesus
// Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt // Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt
use std::rc::{Rc, Weak}; use std::rc::{Rc, Weak};

View File

@ -1,4 +1,4 @@
// Copyright (c) 2017-2020, scoobybejesus // Copyright (c) 2017-2023, scoobybejesus
// Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt // Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt
use std::path::PathBuf; use std::path::PathBuf;

View File

@ -1,4 +1,4 @@
// Copyright (c) 2017-2020, scoobybejesus // Copyright (c) 2017-2023, scoobybejesus
// Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt // Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt
use std::fmt; use std::fmt;

View File

@ -1,4 +1,4 @@
// Copyright (c) 2017-2020, scoobybejesus // Copyright (c) 2017-2023, scoobybejesus
// Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt // Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt
use std::rc::Rc; use std::rc::Rc;

View File

@ -1,4 +1,4 @@
// Copyright (c) 2017-2020, scoobybejesus // Copyright (c) 2017-2023, scoobybejesus
// Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt // Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt
use std::error::Error; use std::error::Error;

View File

@ -1,4 +1,4 @@
// Copyright (c) 2017-2020, scoobybejesus // Copyright (c) 2017-2023, scoobybejesus
// Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt // Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt
use rust_decimal::Decimal; use rust_decimal::Decimal;

View File

@ -1,4 +1,4 @@
// Copyright (c) 2017-2020, scoobybejesus // Copyright (c) 2017-2023, scoobybejesus
// Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt // Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt
use std::collections::HashMap; use std::collections::HashMap;

View File

@ -1,4 +1,4 @@
// Copyright (c) 2017-2020, scoobybejesus // Copyright (c) 2017-2023, scoobybejesus
// Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt // Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt
#![allow(dead_code)] #![allow(dead_code)]

View File

@ -1,4 +1,4 @@
// Copyright (c) 2017-2019, scoobybejesus // Copyright (c) 2017-2023, scoobybejesus
// Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt // Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt
pub mod test; pub mod test;

View File

@ -1,4 +1,4 @@
// Copyright (c) 2017-2020, scoobybejesus // Copyright (c) 2017-2023, scoobybejesus
// Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt // Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt
use std::fs; use std::fs;

View File

@ -1,4 +1,4 @@
// Copyright (c) 2017-2020, scoobybejesus // Copyright (c) 2017-2023, scoobybejesus
// Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt // Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt
use std::rc::Rc; use std::rc::Rc;

View File

@ -1,4 +1,4 @@
// Copyright (c) 2017-2020, scoobybejesus // Copyright (c) 2017-2023, scoobybejesus
// Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt // Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt
use std::error::Error; use std::error::Error;

View File

@ -1,4 +1,4 @@
// Copyright (c) 2017-2020, scoobybejesus // Copyright (c) 2017-2023, scoobybejesus
// Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt // Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt
use std::error::Error; use std::error::Error;

View File

@ -1,4 +1,4 @@
// Copyright (c) 2017-2020, scoobybejesus; // Copyright (c) 2017-2023, scoobybejesus;
// Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt // Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt
use std::fs::File; use std::fs::File;

View File

@ -1,4 +1,4 @@
// Copyright (c) 2017-2020, scoobybejesus // Copyright (c) 2017-2023, scoobybejesus
// Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt // Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt
use std::fs::OpenOptions; use std::fs::OpenOptions;

View File

@ -1,4 +1,4 @@
// Copyright (c) 2017-2020, scoobybejesus // Copyright (c) 2017-2023, scoobybejesus
// Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt // Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt
use std::fs::OpenOptions; use std::fs::OpenOptions;

View File

@ -1,4 +1,4 @@
// Copyright (c) 2017-2020, scoobybejesus // Copyright (c) 2017-2023, scoobybejesus
// Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt // Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt
pub mod export_all; pub mod export_all;

View File

@ -1,4 +1,4 @@
// Copyright (c) 2017-2020, scoobybejesus // Copyright (c) 2017-2023, scoobybejesus
// Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt // Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt
// #![allow(dead_code)] // #![allow(dead_code)]

View File

@ -1,4 +1,4 @@
// Copyright (c) 2017-2020, scoobybejesus // Copyright (c) 2017-2023, scoobybejesus
// Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt // Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt
use std::error::Error; use std::error::Error;

View File

@ -1,4 +1,4 @@
// Copyright (c) 2017-2020, scoobybejesus // Copyright (c) 2017-2023, scoobybejesus
// Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt // Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt
// TODO: cite source? // TODO: cite source?

View File

@ -1,4 +1,4 @@
// Copyright (c) 2017-2020, scoobybejesus // Copyright (c) 2017-2023, scoobybejesus
// Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt // Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt
pub mod print_menu_tui; pub mod print_menu_tui;

View File

@ -1,4 +1,4 @@
// Copyright (c) 2017-2020, scoobybejesus // Copyright (c) 2017-2023, scoobybejesus
// Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt // Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt
use std::io; use std::io;

View File

@ -1,4 +1,4 @@
// Copyright (c) 2017-2020, scoobybejesus // Copyright (c) 2017-2023, scoobybejesus
// Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt // Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt
use std::io; use std::io;

View File

@ -1,4 +1,4 @@
// Copyright (c) 2017-2020, scoobybejesus // Copyright (c) 2017-2023, scoobybejesus
// Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt // Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt
use std::path::PathBuf; use std::path::PathBuf;

View File

@ -1,4 +1,4 @@
// Copyright (c) 2017-2020, scoobybejesus // Copyright (c) 2017-2023, scoobybejesus
// Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt // Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt
use std::path::PathBuf; use std::path::PathBuf;

View File

@ -1,4 +1,4 @@
// Copyright (c) 2017-2020, scoobybejesus // Copyright (c) 2017-2023, scoobybejesus
// Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt // Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt
use std::error::Error; use std::error::Error;