df-interchange 0.3.3

Seamless interoperability between Polars and Arrow.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
test-quick:
    cargo test --features "polars_0_45 polars_0_53" --test polars_to_polars
    cargo test --features "polars_0_53 arrow_58" --test polars_to_arrow --test arrow_to_polars
    cargo test --features "arrow_55 arrow_58" --test arrow_to_arrow

test-large:
    cargo test --features all -j1 --test large

test-ci:
    cargo test --features "arrow_56 arrow_57 arrow_58 polars_0_50 polars_0_51 polars_0_52 polars_0_53" -j1 --test polars_to_arrow --test arrow_to_polars --test polars_to_polars --test arrow_to_arrow

test-all:
    cargo test --features all -j1

doc:
    cargo doc --lib --open --features all