nushell/Cargo.toml

127 lines
3.8 KiB
TOML
Raw Normal View History

2019-05-10 18:59:12 +02:00
[package]
authors = ["The Nushell Project Developers"]
2020-07-05 22:12:44 +02:00
default-run = "nu"
description = "A new type of shell"
2020-07-05 22:12:44 +02:00
documentation = "https://www.nushell.sh/book/"
2019-05-10 18:59:12 +02:00
edition = "2018"
2020-07-05 22:12:44 +02:00
exclude = ["images"]
homepage = "https://www.nushell.sh"
license = "MIT"
name = "nu"
2019-07-16 21:17:46 +02:00
readme = "README.md"
repository = "https://github.com/nushell/nushell"
2022-05-04 03:56:31 +02:00
rust-version = "1.60"
version = "0.66.4"
2021-06-30 03:42:56 +02:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2021-08-25 21:29:36 +02:00
[workspace]
2021-10-28 08:12:33 +02:00
members = [
"crates/nu-cli",
"crates/nu-engine",
"crates/nu-parser",
"crates/nu-system",
2021-10-28 08:12:33 +02:00
"crates/nu-command",
"crates/nu-protocol",
"crates/nu-plugin",
2021-11-04 23:04:21 +01:00
"crates/nu_plugin_inc",
"crates/nu_plugin_gstat",
"crates/nu_plugin_example",
"crates/nu_plugin_query",
Add CustomValue support to plugins (#6070) * Skeleton implementation Lots and lots of TODOs * Bootstrap simple CustomValue plugin support test * Create nu_plugin_custom_value * Skeleton for nu_plugin_custom_values * Return a custom value from plugin * Encode CustomValues from plugin calls as PluginResponse::PluginData * Add new PluginCall variant CollapseCustomValue * Handle CollapseCustomValue plugin calls * Add CallInput::Data variant to CallInfo inputs * Handle CallInfo with CallInput::Data plugin calls * Send CallInput::Data if Value is PluginCustomValue from plugin calls * Remove unnecessary boxing of plugins CallInfo * Add fields needed to collapse PluginCustomValue to it * Document PluginCustomValue and its purpose * Impl collapsing using plugin calls in PluginCustomValue::to_base_value * Implement proper typetag based deserialization for CoolCustomValue * Test demonstrating that passing back a custom value to plugin works * Added a failing test for describing plugin CustomValues * Support describe for PluginCustomValues - Add name to PluginResponse::PluginData - Also turn it into a struct for clarity - Add name to PluginCustomValue - Return name field from PluginCustomValue * Demonstrate that plugins can create and handle multiple CustomValues * Add bincode to nu-plugin dependencies This is for demonstration purposes, any schemaless binary seralization format will work. I picked bincode since it's the most popular for Rust but there are defintely better options out there for this usecase * serde_json::Value -> Vec<u8> * Update capnp schema for new CallInfo.input field * Move call_input capnp serialization and deserialization into new file * Deserialize Value's span from Value itself instead of passing call.head I am not sure if this was correct and I am breaking it or if it was a bug, I don't fully understand how nu creates and uses Spans. What should reuse spans and what should recreate new ones? But yeah it felt weird that the Value's Span was being ignored since in the json serializer just uses the Value's Span * Add call_info value round trip test * Add capnp CallInput::Data serialization and deserialization support * Add CallInfo::CollapseCustomValue to capnp schema * Add capnp PluginCall::CollapseCustomValue serialization and deserialization support * Add PluginResponse::PluginData to capnp schema * Add capnp PluginResponse::PluginData serialization and deserialization support * Switch plugins::custom_values tests to capnp Both json and capnp would work now! Sadly I can't choose both at the same time :( * Add missing JsonSerializer round trip tests * Handle plugin returning PluginData as a response to CollapseCustomValue * Refactor plugin calling into a reusable function Many less levels of indentation now! * Export PluginData from nu_plugin So plugins can create their very own serve_plugin with whatever CustomValue behavior they may desire * Error if CustomValue cannot be handled by Plugin
2022-07-25 18:32:56 +02:00
"crates/nu_plugin_custom_values",
"crates/nu-utils",
2021-10-28 08:12:33 +02:00
]
2021-08-25 21:29:36 +02:00
2021-06-30 03:42:56 +02:00
[dependencies]
2022-08-05 13:53:01 +02:00
chrono = { version = "0.4.20", features = ["serde"] }
crossterm = "0.24.0"
ctrlc = "3.2.1"
log = "0.4"
miette = "5.1.0"
nu-ansi-term = "0.46.0"
nu-cli = { path="./crates/nu-cli", version = "0.66.4" }
nu-color-config = { path = "./crates/nu-color-config", version = "0.66.4" }
nu-command = { path="./crates/nu-command", version = "0.66.4" }
nu-engine = { path="./crates/nu-engine", version = "0.66.4" }
nu-json = { path="./crates/nu-json", version = "0.66.4" }
nu-parser = { path="./crates/nu-parser", version = "0.66.4" }
nu-path = { path="./crates/nu-path", version = "0.66.4" }
nu-plugin = { path = "./crates/nu-plugin", optional = true, version = "0.66.4" }
nu-pretty-hex = { path = "./crates/nu-pretty-hex", version = "0.66.4" }
nu-protocol = { path = "./crates/nu-protocol", version = "0.66.4" }
nu-system = { path = "./crates/nu-system", version = "0.66.4" }
nu-table = { path = "./crates/nu-table", version = "0.66.4" }
nu-term-grid = { path = "./crates/nu-term-grid", version = "0.66.4" }
nu-utils = { path = "./crates/nu-utils", version = "0.66.4" }
2022-07-26 21:19:38 +02:00
reedline = { version = "0.9.0", features = ["bashisms", "sqlite"]}
rayon = "1.5.1"
is_executable = "1.0.1"
simplelog = "0.12.0"
time = "0.3.12"
2022-05-26 20:28:59 +02:00
[target.'cfg(not(target_os = "windows"))'.dependencies]
# Our dependencies don't use OpenSSL on Windows
openssl = { version = "0.10.38", features = ["vendored"], optional = true }
signal-hook = { version = "0.3.14", default-features = false }
2022-05-26 20:28:59 +02:00
2021-07-30 22:02:16 +02:00
[dev-dependencies]
nu-test-support = { path="./crates/nu-test-support", version = "0.66.4" }
2021-07-30 22:02:16 +02:00
tempfile = "3.2.0"
2021-12-16 10:40:05 +01:00
assert_cmd = "2.0.2"
pretty_assertions = "1.0.0"
2022-07-26 04:09:32 +02:00
serial_test = "0.8.0"
hamcrest2 = "0.3.0"
rstest = {version = "0.15.0", default-features = false}
itertools = "0.10.3"
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
[features]
plugin = ["nu-plugin", "nu-cli/plugin", "nu-parser/plugin", "nu-command/plugin", "nu-protocol/plugin", "nu-engine/plugin"]
default = ["plugin", "which-support", "trash-support"]
stable = ["default"]
2022-04-25 01:26:56 +02:00
extra = ["default", "dataframe", "database"]
wasi = []
# Enable to statically link OpenSSL; otherwise the system version will be used. Not enabled by default because it takes a while to build
static-link-openssl = ["dep:openssl"]
# Stable (Default)
2022-03-30 20:37:31 +02:00
which-support = ["nu-command/which-support"]
2022-03-10 14:37:24 +01:00
trash-support = ["nu-command/trash-support"]
# Extra
# Dataframe feature for nushell
dataframe = ["nu-command/dataframe"]
# Database commands for nushell
database = ["nu-command/database"]
[profile.release]
opt-level = "s" # Optimize for size
strip = "debuginfo"
2022-03-10 14:37:24 +01:00
lto = "thin"
# build with `cargo build --profile profiling`
# to analyze performance with tooling like linux perf
[profile.profiling]
inherits = "release"
strip = false
debug = true
# build with `cargo build --profile ci`
# to analyze performance with tooling like linux perf
[profile.ci]
inherits = "dev"
strip = false
debug = false
# Main nu binary
2019-06-27 06:56:48 +02:00
[[bin]]
name = "nu"
path = "src/main.rs"
[patch.crates-io]
reedline = { git = "https://github.com/nushell/reedline.git", branch = "main" }