[package] name = "polars-row-derive" version = "0.1.0" edition = "2021" authors = ["Andrés F. Quintero "] description = "Macro to help convert an interator of structs into a DataFrame" license = "MIT" readme = "README.md" homepage = "https://github.com/andyquinterom/polars-row-derive" repository = "https://github.com/andyquinterom/polars-row-derive" keywords = ["polars", "dataframe", "derive", "macro"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] proc-macro = true [dependencies] proc-macro2 = { version = "1.0.74", default-features = false, features = ["proc-macro"] } quote = { version = "1.0.35", default-features = false, features = ["proc-macro"] } syn = { version = "2.0.46", default-features = false, features = ["clone-impls", "derive", "parsing", "printing", "proc-macro"] } [dev-dependencies] polars = { version = "^0.39.1", default-features = false, features = ["lazy"] }