-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (22 loc) · 713 Bytes
/
Cargo.toml
File metadata and controls
26 lines (22 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "nflreadrust"
version = "0.1.0"
edition = "2024"
description = "A Rust port of nflreadpy - read NFL data from the nflverse project"
license = "MIT"
[lib]
name = "nflreadrust"
path = "src/lib.rs"
[[bin]]
name = "nflreadrust"
path = "src/main.rs"
[dependencies]
polars = { version = "0.46", features = ["parquet", "csv", "lazy", "dtype-date", "dtype-datetime", "dtype-i8", "dtype-i16", "dtype-u8", "dtype-u16", "diagonal_concat", "is_in", "dtype-struct", "dtype-array", "dtype-categorical"] }
reqwest = { version = "0.12", features = ["blocking", "stream"] }
chrono = "0.4"
md5 = "0.7"
thiserror = "2"
dirs = "6"
serde = { version = "1", features = ["derive"] }
toml = "0.8"
[dev-dependencies]