File size: 598 Bytes
2eae90c |
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 27 28 29 30 31 32 33 34 |
[package]
name = "polars_queries_rust"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "0.4"
jemallocator = { version = "0.5", features = ["disable_initial_exec_tls"] }
[dependencies.polars]
version = "*"
path = "../../polars/polars"
default-features = false
features = [
"performant",
"fmt",
"simd",
"lazy",
"ipc",
"top_k",
"streaming",
"dtype-categorical",
"dtype-struct",
"parquet",
"temporal",
"dtype-date",
"dtype-datetime",
]
[profile.release]
debug = 1
|