Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pola-rs
GitHub Repository: pola-rs/polars
Path: blob/main/crates/polars-row/Cargo.toml
8446 views
1
[package]
2
name = "polars-row"
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 = "Row encodings for the Polars DataFrame library"
10
11
[dependencies]
12
bitflags = { workspace = true }
13
bytemuck = { workspace = true }
14
polars-buffer = { workspace = true }
15
polars-compute = { workspace = true, features = ["cast"] }
16
polars-dtype = { workspace = true }
17
polars-error = { workspace = true }
18
polars-utils = { workspace = true }
19
20
arrow = { workspace = true }
21
22
[dev-dependencies]
23
arrow = { workspace = true, features = ["proptest"] }
24
proptest = { workspace = true }
25
26
[lints]
27
workspace = true
28
29