From d230e1b2e07696af47a7e3f8e2c9e5ece1fa1bcf Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sat, 26 Apr 2025 04:41:49 +0100 Subject: [PATCH 1/3] Add *.info to .gitignore to exclude info files from version control --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 77b701d..90d4e56 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,7 @@ data/ *.log *.pkl .env +*.info .venv/ From e6f7c88893addde669e4d5db4780209cf161bddd Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sat, 26 Apr 2025 04:58:12 +0100 Subject: [PATCH 2/3] Revert edition to 2021 and update chrono dependency version in Cargo.toml --- Cargo.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 524f55f..b7d3229 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,9 @@ [package] name = "rustframe" version = "0.0.1-a.0" -edition = "2024" +edition = "2021" license = "GPL-3.0-or-later" +license-file = "LICENSE" readme = "README.md" description = "A simple dataframe library" @@ -12,4 +13,4 @@ path = "src/lib.rs" crate-type = ["cdylib", "lib"] [dependencies] -chrono = "0.4.38" +chrono = "^0.4.10" From d212adabb9c7463123c23aa89dfd4856256af7d8 Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sat, 26 Apr 2025 04:59:52 +0100 Subject: [PATCH 3/3] Add initial PR checks workflow configuration --- .github/{workflows => archive}/pr-checks.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/{workflows => archive}/pr-checks.yml (100%) diff --git a/.github/workflows/pr-checks.yml b/.github/archive/pr-checks.yml similarity index 100% rename from .github/workflows/pr-checks.yml rename to .github/archive/pr-checks.yml