From 4605208efdd6386b850b229afd4deb22f651784e Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Thu, 17 Apr 2025 11:59:55 +0100 Subject: [PATCH] update Cargo.toml to define library configuration and dependencies --- Cargo.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index c7c9902..7fb8bea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,4 +6,11 @@ license = "GPL-3.0-or-later" readme = "README.md" description = "A simple dataframe library" +[lib] +name = "rustframe" +path = "src/lib.rs" +crate-type = ["cdylib", "lib"] + [dependencies] +chrono = "0.4.38" +rayon = "1.5"