From c8ce66070c8653c7e9f29951c1d6b080662749f1 Mon Sep 17 00:00:00 2001 From: "1568018+davassi@users.noreply.github.com" Date: Sun, 8 Jun 2025 10:29:27 +0200 Subject: [PATCH] Fixing copyright note --- Cargo.toml | 8 ++++---- src/bin/main.rs | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f6c06ec..7fa2629 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ repository = "https://github.com/davassi/yarer" homepage = "https://github.com/davassi/yarer" license = "MIT OR Apache-2.0" edition = "2021" -authors = ["Davassi "] +authors = ["Copyright © 2024–2025 Gianluigi Davassi "] categories = ["command-line-interface","algorithms","mathematics","parsing"] readme = "README.md" keywords = [ @@ -21,13 +21,13 @@ keywords = [ clap = { version = "4.4.2", features = ["derive"] } once_cell = "1.18.0" regex = "1.9.3" -rustyline = "13.0.0" +rustyline = "16.0.0" log = "0.4" env_logger = "0.11.2" anyhow = "1.0.72" -thiserror = "1.0.44" +thiserror = "2.0.12" lazy_static = "1.4" -dirs = "5.0.1" +dirs = "6.0.0" num = "0.4.1" num-bigint = "0.4.4" num-traits = "0.2.18" diff --git a/src/bin/main.rs b/src/bin/main.rs index 0af1be8..db5dd4d 100644 --- a/src/bin/main.rs +++ b/src/bin/main.rs @@ -16,8 +16,8 @@ static HISTORY_FILE: &str = ".yarer_history"; #[command( author, version, - about = "Yarer (Yet Another Rust Expression Resolver) ...", - long_about = "Yarer (Yet Another Rust Expression Resolver) ...\n\ + about = "Yarer (Yet Another Rust Expression Resolver)\n", + long_about = "Yarer (Yet Another Rust Expression Resolver)\n\ Copyright (c) 2024 Davassi \n\ License MIT OR Apache-2.0", help_template = "{before-help}{name} {version}\n{author-with-newline}{about-with-newline}{usage-heading} {usage}\n\n{all-args}{after-help}"