msyrs/Cargo.toml
Palash Tyagi ee19862036 working!
2024-11-14 23:50:15 +00:00

88 lines
1.6 KiB
TOML

[package]
name = "msyrs"
edition = "2021"
version = "0.0.1"
readme = "README.md"
[package.metadata.docs]
rustdoc = ["--cfg", "doc"]
[lib]
name = "msyrs"
path = "src/lib.rs"
[dependencies]
reqwest = { version = "0.12.9", features = ["blocking", "json"] }
serde_json = "1.0"
serde_urlencoded = "0.7"
serde = { version = "1.0.215", features = ["derive"] }
# polars = { version = "0.44.2", features = ["lazy"] }
chrono = "0.4.38"
rand = "0.8"
threadpool = "1.8.1"
log = "0.4.22"
crossbeam = "0.8"
rayon = "1.5"
tokio = "1.41.1"
futures = "0.3"
polars = { version = "^0.44.0", features = [
"lazy",
"temporal",
"describe",
"json",
"parquet",
"dtype-datetime",
"strings",
"timezones",
"ndarray",
"concat_str",
# "serde-lazy",
# "parquet",
# "decompress",
# "zip",
# "gzip",
"dynamic_group_by",
"rows",
"cross_join",
"semi_anti_join",
"row_hash",
"diagonal_concat",
"dataframe_arithmetic",
"partition_by",
"is_in",
"zip_with",
"round_series",
"repeat_by",
"is_first_distinct",
"is_last_distinct",
"checked_arithmetic",
"dot_product",
"concat_str",
"reinterpret",
"take_opt_iter",
"mode",
"cum_agg",
"rolling_window",
"interpolate",
"rank",
"moment",
"ewma",
"abs",
"product",
"diff",
"pct_change",
"unique_counts",
"log",
"list_to_struct",
"list_count",
"list_eval",
"cumulative_eval",
"arg_where",
"search_sorted",
"offset_by",
"trigonometry",
"sign",
"propagate_nans",
] }