File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " sush"
3
- version = " 2025.10.3 "
3
+ version = " 2025.12.0 "
4
4
edition = " 2021"
5
5
6
6
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Original file line number Diff line number Diff line change @@ -18,15 +18,15 @@ use crate::{proc_ctrl, signal};
18
18
use std:: sync:: Arc ;
19
19
use std:: sync:: atomic:: AtomicBool ;
20
20
21
- type BuiltinFunc = fn ( & mut ShellCore , & [ String ] ) -> i32 ;
21
+ type BuiltinFn = fn ( & mut ShellCore , & [ String ] ) -> i32 ;
22
22
23
23
#[ derive( Default ) ]
24
24
pub struct ShellCore {
25
25
pub flags : String ,
26
26
pub db : DataBase ,
27
27
rewritten_history : HashMap < usize , String > ,
28
28
pub history : Vec < String > ,
29
- pub builtins : HashMap < String , BuiltinFunc > ,
29
+ pub builtins : HashMap < String , BuiltinFn > ,
30
30
pub sigint : Arc < AtomicBool > ,
31
31
pub is_subshell : bool ,
32
32
pub source_function_level : i32 ,
You can’t perform that action at this time.
0 commit comments