mirror of
https://github.com/nushell/nushell.git
synced 2025-08-14 08:48:51 +02:00
Rust 1.85, edition=2024 (#15741)
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
authors = ["The Nushell Project Developers"]
|
||||
description = "A test plugin for Nushell to stress aspects of the internals"
|
||||
repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_stress_internals"
|
||||
edition = "2021"
|
||||
edition = "2024"
|
||||
license = "MIT"
|
||||
name = "nu_plugin_stress_internals"
|
||||
version = "0.104.1"
|
||||
@ -16,4 +16,4 @@ bench = false
|
||||
# assumptions about the serialized format
|
||||
serde = { workspace = true }
|
||||
serde_json = { workspace = true }
|
||||
interprocess = { workspace = true }
|
||||
interprocess = { workspace = true }
|
||||
|
@ -5,10 +5,10 @@ use std::{
|
||||
};
|
||||
|
||||
use interprocess::local_socket::{
|
||||
self, traits::Stream, GenericFilePath, GenericNamespaced, ToFsName, ToNsName,
|
||||
self, GenericFilePath, GenericNamespaced, ToFsName, ToNsName, traits::Stream,
|
||||
};
|
||||
use serde::Deserialize;
|
||||
use serde_json::{json, Value};
|
||||
use serde_json::{Value, json};
|
||||
|
||||
#[derive(Debug)]
|
||||
struct Options {
|
||||
|
Reference in New Issue
Block a user