File tree Expand file tree Collapse file tree 4 files changed +29
-0
lines changed Expand file tree Collapse file tree 4 files changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -3884,6 +3884,18 @@ dependencies = [
3884
3884
" syntax_pos" ,
3885
3885
]
3886
3886
3887
+ [[package ]]
3888
+ name = " rustc_session"
3889
+ version = " 0.0.0"
3890
+ dependencies = [
3891
+ " log" ,
3892
+ " rustc_data_structures" ,
3893
+ " libserialize" ,
3894
+ " rustc_errors" ,
3895
+ " serialize" ,
3896
+ " syntax_pos" ,
3897
+ ]
3898
+
3887
3899
[[package ]]
3888
3900
name = " rustc_target"
3889
3901
version = " 0.0.0"
Original file line number Diff line number Diff line change @@ -39,3 +39,4 @@ rustc_fs_util = { path = "../librustc_fs_util" }
39
39
smallvec = { version = " 1.0" , features = [" union" , " may_dangle" ] }
40
40
measureme = " 0.4"
41
41
rustc_error_codes = { path = " ../librustc_error_codes" }
42
+ rustc_session = { path = " ../librustc_session" }
Original file line number Diff line number Diff line change
1
+ [package ]
2
+ authors = [" The Rust Project Developers" ]
3
+ name = " rustc_session"
4
+ version = " 0.0.0"
5
+ edition = " 2018"
6
+
7
+ [lib ]
8
+ name = " rustc_session"
9
+ path = " lib.rs"
10
+
11
+ [dependencies ]
12
+ log = " 0.4"
13
+ rustc_errors = { path = " ../librustc_errors" }
14
+ rustc_serialize = { path = " ../libserialize" , package = " serialize" }
15
+ rustc_data_structures = { path = " ../librustc_data_structures" }
16
+ syntax_pos = { path = " ../libsyntax_pos" }
You can’t perform that action at this time.
0 commit comments