Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pola-rs
GitHub Repository: pola-rs/polars
Path: blob/main/crates/polars-error/Cargo.toml
6939 views
1
[package]
2
name = "polars-error"
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
description = "Error definitions for the Polars DataFrame library"
10
11
[dependencies]
12
arrow-format = { workspace = true, optional = true, features = ["ipc"] }
13
avro-schema = { workspace = true, optional = true }
14
object_store = { workspace = true, optional = true }
15
parking_lot = { workspace = true }
16
pyo3 = { workspace = true, optional = true }
17
regex = { workspace = true, optional = true }
18
simdutf8 = { workspace = true }
19
20
[target.'cfg(not(target_family = "wasm"))'.dependencies]
21
signal-hook = "0.3"
22
23
[features]
24
python = ["dep:pyo3"]
25
26
[lints]
27
workspace = true
28
29