@@ -9,7 +9,6 @@ pub struct Config {
99 pub ignore : Vec < String > ,
1010 pub entry_points : Vec < String > ,
1111 pub hub_threshold : HubThresholdConfig ,
12- pub call_graph : CallGraphConfig ,
1312 pub semantic_search : SemanticSearchConfig ,
1413 pub search : SearchConfig ,
1514 pub path : PathConfig ,
@@ -41,7 +40,6 @@ impl Default for Config {
4140 ] ,
4241 entry_points : Vec :: new ( ) ,
4342 hub_threshold : HubThresholdConfig :: default ( ) ,
44- call_graph : CallGraphConfig :: default ( ) ,
4543 semantic_search : SemanticSearchConfig :: default ( ) ,
4644 search : SearchConfig :: default ( ) ,
4745 path : PathConfig :: default ( ) ,
@@ -72,22 +70,6 @@ impl Default for HubThresholdConfig {
7270 }
7371}
7472
75- #[ derive( Debug , Clone , Deserialize , Serialize ) ]
76- #[ serde( default ) ]
77- pub struct CallGraphConfig {
78- pub resolver : String ,
79- pub confidence_tracking : bool ,
80- }
81-
82- impl Default for CallGraphConfig {
83- fn default ( ) -> Self {
84- Self {
85- resolver : "conservative" . into ( ) ,
86- confidence_tracking : true ,
87- }
88- }
89- }
90-
9173#[ derive( Debug , Clone , Deserialize , Serialize ) ]
9274#[ serde( default ) ]
9375pub struct SemanticSearchConfig {
0 commit comments