update Cargo.toml to define library configuration and dependencies

This commit is contained in:
Palash Tyagi 2025-04-17 11:59:55 +01:00
parent 45b01ad096
commit 4605208efd

View File

@ -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"