Reilly Wood 71ffd04ae7
Fix up ctrl+C handling in into_sqlite (#12130)
I noticed that ctrl+C handling wasn't fully wired up in `into sqlite`,
for some data types we were ignoring ctrl+C presses.

I fixed that up and also made sure we roll back the current transaction
when cancelling (without that, I think we leak memory and database
locks).
2024-03-08 21:06:06 +01:00
..
2024-03-08 20:21:35 +02:00
2024-03-08 20:21:35 +02:00
2024-03-08 20:21:35 +02:00
2024-03-08 20:21:35 +02:00
2024-03-08 20:21:35 +02:00
2024-03-06 23:08:14 +01:00
2024-03-08 15:29:20 +08:00
2024-03-06 23:08:14 +01:00
2024-03-08 20:21:35 +02:00
2024-03-08 20:21:35 +02:00
2024-03-08 20:21:35 +02:00
2022-02-07 14:54:06 -05:00

Nushell core libraries and plugins

These sub-crates form both the foundation for Nu and a set of plugins which extend Nu with additional functionality.

Foundational libraries are split into two kinds of crates:

  • Core crates - those crates that work together to build the Nushell language engine
  • Support crates - a set of crates that support the engine with additional features like JSON support, ANSI support, and more.

Plugins are likewise also split into two types:

  • Core plugins - plugins that provide part of the default experience of Nu, including access to the system properties, processes, and web-connectivity features.
  • Extra plugins - these plugins run a wide range of different capabilities like working with different file types, charting, viewing binary data, and more.