Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pola-rs
GitHub Repository: pola-rs/polars
Path: blob/main/pyo3-polars/pyo3-polars-derive/Cargo.toml
6939 views
1
[package]
2
name = "pyo3-polars-derive"
3
version = "0.17.1"
4
edition = "2021"
5
license = "MIT"
6
readme = "README.md"
7
repository = "https://github.com/pola-rs/pyo3-polars"
8
description = "Proc-macro's for pyo3-polars"
9
10
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
11
12
[lib]
13
proc-macro = true
14
15
[[test]]
16
name = "tests"
17
path = "tests/run.rs"
18
19
[dependencies]
20
arrow = { workspace = true }
21
polars-core = { workspace = true, features = ["allow_unused"] }
22
polars-ffi = { workspace = true }
23
polars-plan = { workspace = true, features = ["allow_unused"] }
24
proc-macro2 = "1.0"
25
quote = "1.0"
26
syn = { version = "2", features = ["full", "extra-traits"] }
27
28
[dev-dependencies]
29
polars-python = { workspace = true, features = ["full"] }
30
pyo3-polars = { workspace = true, features = ["derive"] }
31
trybuild = { version = "1", features = ["diff"] }
32
33