-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
37 lines (30 loc) · 1.07 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "nu_plugin_parquet"
version = "0.9.0"
authors = ["Darren Schroeder", "Jake Swenson <[email protected]>"]
edition = "2021"
repository = "https://github.com/fdncred/nu_plugin_parquet"
description = "nu plugin to add parquet support"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# nushell dependencies
nu-plugin = "0.99.1"
nu-protocol = "0.99.1"
nu-path = "0.99.1"
# for local development, you can use a path dependency
# nu-plugin = { path = "../nushell/crates/nu-plugin", version = "0.98.0" }
# nu-protocol = { path = "../nushell/crates/nu-protocol", version = "0.98.0" }
# nu-path = { path = "../nushell/crates/nu-path", version = "0.98.0" }
bytes = "1.7.2"
chrono = { version = "0.4.31", features = ["serde"] }
parquet = "49.0.0"
[dev-dependencies]
nu-plugin-test-support = "0.99.1"
# nu-plugin-test-support = { path = "../nushell/crates/nu-plugin-test-support" }
[profile.release]
opt-level = "s" # Optimize for size
strip = "debuginfo"
lto = "thin"
[profile.dev]
opt-level = 0