Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pola-rs
GitHub Repository: pola-rs/polars
Path: blob/main/pyo3-polars/example/extend_polars_python_dispatch/extend_polars/Cargo.toml
6939 views
1
[package]
2
name = "extend_polars"
3
version = "0.1.0"
4
edition = "2021"
5
6
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7
[lib]
8
name = "extend_polars"
9
crate-type = ["cdylib"]
10
11
[dependencies]
12
polars = { workspace = true, features = ["full"] }
13
polars-core = { workspace = true }
14
polars-lazy = { workspace = true }
15
polars-python = { workspace = true, features = ["full", "allow_unused"] }
16
pyo3 = { workspace = true, features = ["extension-module"] }
17
pyo3-polars = { workspace = true, features = ["lazy"] }
18
rayon = { workspace = true }
19
20