File tree Expand file tree Collapse file tree
src/lsp/completions/sources/unique Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -116,5 +116,5 @@ walkdir = "2"
116116windows-sys =" 0.61.2"
117117winsafe = { version = " 0.0.27" , features = [" kernel" ] }
118118xdg = " 3.0.0"
119- yaml-rust = " 0.4.5 "
119+ yaml-rust2 = " 0.9 "
120120zmq = " 0.10.0"
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ url.workspace = true
7171uuid.workspace = true
7272walkdir.workspace = true
7373winsafe.workspace = true
74- yaml-rust .workspace = true
74+ yaml-rust2 .workspace = true
7575
7676[dev-dependencies ]
7777ark_test.workspace = true
Original file line number Diff line number Diff line change @@ -65,7 +65,9 @@ fn main() {
6565 let resource = Path :: new ( "resources" )
6666 . join ( "manifest" )
6767 . join ( "ark-manifest.rc" ) ;
68- embed_resource:: compile_for_everything ( resource, embed_resource:: NONE ) . unwrap ( ) ;
68+ embed_resource:: compile_for_everything ( resource, embed_resource:: NONE )
69+ . manifest_optional ( )
70+ . unwrap ( ) ;
6971
7072 cc:: Build :: new ( ) . file ( "src/debug.c" ) . compile ( "debug" ) ;
7173}
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ use tower_lsp::lsp_types::Documentation;
1515use tower_lsp:: lsp_types:: InsertTextFormat ;
1616use tower_lsp:: lsp_types:: MarkupContent ;
1717use tower_lsp:: lsp_types:: MarkupKind ;
18- use yaml_rust :: YamlLoader ;
18+ use yaml_rust2 :: YamlLoader ;
1919
2020use crate :: lsp:: completions:: completion_context:: CompletionContext ;
2121use crate :: lsp:: completions:: completion_item:: completion_item;
Original file line number Diff line number Diff line change @@ -23,5 +23,7 @@ fn main() {
2323 let resource = Path :: new ( "resources" )
2424 . join ( "manifest" )
2525 . join ( "harp-manifest.rc" ) ;
26- embed_resource:: compile_for_everything ( resource, embed_resource:: NONE ) . unwrap ( ) ;
26+ embed_resource:: compile_for_everything ( resource, embed_resource:: NONE )
27+ . manifest_optional ( )
28+ . unwrap ( ) ;
2729}
You can’t perform that action at this time.
0 commit comments