nu_plugin_bigquery 0.2.0

A Nushell plugin for querying Google BigQuery
Documentation
[package]
name = "nu_plugin_bigquery"
version = "0.2.0"
edition = "2024"
description = "A Nushell plugin for querying Google BigQuery"
license = "MIT"
homepage = "https://github.com/galuszkak/nu_plugin_bigquery/"
repository = "https://github.com/galuszkak/nu_plugin_bigquery/"
authors = ["Kamil GaƂuszka"]

[[bin]]
name = "nu_plugin_bigquery"
path = "src/main.rs"

[dependencies]
nu-plugin = "0.112.2"
nu-protocol = "0.112.2"
reqwest = { version = "0.13", features = ["json", "query"] }

# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"

# Async runtime
tokio = { version = "1", features = ["rt-multi-thread"] }

# Date/time handling
chrono = { version = "0.4", features = ["serde"] }

# Base64 for BYTES type
base64 = "0.22"

# Arrow IPC output (--arrow flag)
arrow = { version = "58", features = ["ipc"] }
tempfile = "3"

interprocess = "2.4.0"
google-cloud-auth = "1.8.0"
tonic = { version = "0.14.5", features = ["tls-webpki-roots"] }
prost = "0.14.3"
googleapis-tonic-google-cloud-bigquery-storage-v1 = "0.31.0"