Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pola-rs
GitHub Repository: pola-rs/polars
Path: blob/main/crates/polars-dylib/Cargo.toml
6939 views
1
[package]
2
name = "polars-dylib"
3
version.workspace = true
4
authors.workspace = true
5
edition.workspace = true
6
homepage.workspace = true
7
license.workspace = true
8
repository.workspace = true
9
10
[lib]
11
crate-type = ["dylib", "rlib"]
12
13
[dependencies]
14
arrow = { workspace = true, optional = true, features = ["io_flight"] }
15
polars = { workspace = true, features = ["full"] }
16
polars-core = { workspace = true, optional = true }
17
polars-expr = { workspace = true, optional = true }
18
polars-lazy = { workspace = true, optional = true }
19
polars-mem-engine = { workspace = true, optional = true }
20
polars-plan = { workspace = true, optional = true }
21
polars-python = { workspace = true, optional = true, default-features = true }
22
23
[features]
24
private = ["polars-plan", "arrow", "polars-core", "polars-lazy", "polars-expr", "polars-mem-engine"]
25
python = ["polars-plan?/python", "polars-python", "polars-lazy?/python", "polars-mem-engine?/python"]
26
27
[lints]
28
workspace = true
29
30